fix(entry): add entry

This commit is contained in:
zhangheng
2026-02-28 13:31:19 +08:00
parent af29bd39c1
commit bcf46df7ec
11 changed files with 115 additions and 94 deletions

View File

@@ -6,7 +6,7 @@ import { useEffect } from "react"
export default function Home() {
const router = useRouter()
useEffect(() => {
router.push("/management")
router.push("/entry")
}, [router])
return <></>
}