24 lines
914 B
TypeScript
24 lines
914 B
TypeScript
|
|
import { SignInForm } from "@/components/auth/sign-in-form";
|
||
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||
|
|
|
||
|
|
export default function SignInPage() {
|
||
|
|
return (
|
||
|
|
<Card className="border-0 shadow-2xl bg-white/95 dark:bg-slate-900/95 backdrop-blur">
|
||
|
|
<CardHeader className="space-y-1 text-center">
|
||
|
|
<div className="flex justify-center mb-4">
|
||
|
|
<div className="h-12 w-12 rounded-xl bg-gradient-to-br from-purple-600 to-blue-600 flex items-center justify-center">
|
||
|
|
<span className="text-2xl font-bold text-white">P</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<CardTitle className="text-2xl font-bold">Welcome to Pulse</CardTitle>
|
||
|
|
<CardDescription>
|
||
|
|
Sign in to your account to continue
|
||
|
|
</CardDescription>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
<SignInForm />
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
);
|
||
|
|
}
|