mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-09 22:31:10 +00:00
18 lines
424 B
TypeScript
18 lines
424 B
TypeScript
"use client"
|
|
|
|
import { useEffect } from "react"
|
|
import { useRouter } from "next/navigation"
|
|
|
|
export default function OnboardingPage() {
|
|
const router = useRouter()
|
|
|
|
useEffect(() => {
|
|
router.replace("/new/onboarding/welcome?step=input")
|
|
}, [router])
|
|
|
|
return (
|
|
<div className="h-screen overflow-hidden bg-black flex items-center justify-center">
|
|
<div className="text-white/50 text-sm">Loading...</div>
|
|
</div>
|
|
)
|
|
}
|