Initial commit

This commit is contained in:
xggz
2026-03-06 22:56:13 +08:00
commit 54d1097b41
273 changed files with 92457 additions and 0 deletions

12
src/app/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
"use client"
import { useEffect } from "react"
import { useRouter } from "next/navigation"
export default function Page() {
const router = useRouter()
useEffect(() => {
router.replace("/welcome")
}, [router])
return null
}