feat(project): init
This commit is contained in:
16
src/app/logout/page.tsx
Normal file
16
src/app/logout/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user