feat(project): init

This commit is contained in:
2026-02-03 17:33:52 +08:00
commit b57d04f172
32 changed files with 1057 additions and 0 deletions

16
src/app/logout/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
import Link from "next/link"
export default function LogoutPage() {
return (
<main className="min-h-screen flex items-center justify-center p-6">
<div className="max-w-md space-y-4 text-center">
<div className="text-xl font-semibold">退</div>
<div className="text-sm text-muted-foreground"></div>
<Link className="text-sm underline underline-offset-4" href="/login">
</Link>
</div>
</main>
)
}