23 lines
642 B
TypeScript
23 lines
642 B
TypeScript
import LoginForm from "@/components/auth/LoginForm";
|
|
import { Suspense } from "react";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<div className="w-full max-w-sm space-y-6">
|
|
<div className="space-y-2 text-center">
|
|
<h1 className="text-2xl font-semibold tracking-tight">
|
|
Admin Sign In
|
|
</h1>
|
|
<p className="text-sm text-muted-foreground">
|
|
Sign in with your administrator account
|
|
</p>
|
|
</div>
|
|
|
|
<Suspense>
|
|
<LoginForm />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |