added legal and privacy links

This commit is contained in:
WeeXnes 2025-07-01 23:26:02 +02:00
parent 1143365a00
commit 613637157c

View file

@ -5,11 +5,17 @@ import Link from "next/link";
export default function LoginPage() { export default function LoginPage() {
return ( return (
<div className="relative flex min-h-screen flex-col items-center justify-center"> <div className="flex min-h-[calc(100vh-10rem)] flex-col items-center justify-center">
<Card className="w-full max-w-md shadow-2xl"> <Card className="w-full max-w-md shadow-2xl">
<CardHeader className="text-center"> <CardHeader className="text-center">
<div className="mx-auto mb-6 w-fit"> <div className="mx-auto mb-6 w-fit">
<AppLogo /> <Link href="" className="hover:underline" target="_blank">
Privacy Policy
</Link>
<span className="mx-2">·</span>
<Link href="" className="hover:underline" target="_blank">
Legal
</Link>
</div> </div>
<CardTitle className="text-3xl font-bold tracking-tight font-headline">Welcome Back</CardTitle> <CardTitle className="text-3xl font-bold tracking-tight font-headline">Welcome Back</CardTitle>
<CardDescription>Sign in to access your VividCDN account.</CardDescription> <CardDescription>Sign in to access your VividCDN account.</CardDescription>
@ -18,15 +24,10 @@ export default function LoginPage() {
<LoginForm /> <LoginForm />
</CardContent> </CardContent>
</Card> </Card>
<footer className="absolute bottom-4 left-0 right-0 text-center text-sm text-muted-foreground">
<Link href="https://weexnes.dev/privacy" className="hover:underline" target="_blank">
Privacy Policy
</Link>
<span className="mx-2">·</span>
<Link href="https://weexnes.dev/legal" className="hover:underline" target="_blank">
Legal
</Link>
</footer>
</div> </div>
); );
} }