Files
iam-front/src/app/logout/page.tsx
2026-02-03 17:33:52 +08:00

17 lines
536 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
)
}