17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
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>
|
||
)
|
||
}
|
||
|