Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,22 +1,6 @@
|
||||
'use client'
|
||||
|
||||
import { useEffect } from 'react'
|
||||
import { useRouter } from 'next/navigation'
|
||||
import SetupPage from './setup/page'
|
||||
|
||||
export default function HomePage() {
|
||||
const router = useRouter()
|
||||
|
||||
useEffect(() => {
|
||||
// Redirect to setup page
|
||||
router.push('/setup')
|
||||
}, [router])
|
||||
|
||||
return (
|
||||
<div className="flex items-center justify-center min-h-screen">
|
||||
<div className="text-center">
|
||||
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-bzzz-primary mx-auto mb-4"></div>
|
||||
<p className="text-gray-600">Redirecting to setup...</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
// Serve setup page directly at root to avoid redirect loops
|
||||
return <SetupPage />
|
||||
}
|
||||
Reference in New Issue
Block a user