mirror of
https://github.com/tale/headplane.git
synced 2026-08-28 07:57:03 +00:00
15 lines
435 B
TypeScript
15 lines
435 B
TypeScript
import Card from "~/components/card";
|
|
|
|
export default function Logout() {
|
|
return (
|
|
<div className="flex h-screen w-screen items-center justify-center">
|
|
<Card className="m-4 max-w-md sm:m-0">
|
|
<Card.Title>You have been logged out</Card.Title>
|
|
<Card.Text>
|
|
You can now close this window. If you would like to log in again, please refresh the page.
|
|
</Card.Text>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|