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

@ -4,29 +4,30 @@ import { AppLogo } from '@/components/core/AppLogo';
import Link from "next/link"; 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">
</div> Privacy Policy
<CardTitle className="text-3xl font-bold tracking-tight font-headline">Welcome Back</CardTitle> </Link>
<CardDescription>Sign in to access your VividCDN account.</CardDescription> <span className="mx-2">·</span>
</CardHeader> <Link href="" className="hover:underline" target="_blank">
<CardContent> Legal
<LoginForm /> </Link>
</CardContent> </div>
</Card> <CardTitle className="text-3xl font-bold tracking-tight font-headline">Welcome Back</CardTitle>
<footer className="absolute bottom-4 left-0 right-0 text-center text-sm text-muted-foreground"> <CardDescription>Sign in to access your VividCDN account.</CardDescription>
<Link href="https://weexnes.dev/privacy" className="hover:underline" target="_blank"> </CardHeader>
Privacy Policy <CardContent>
</Link> <LoginForm />
<span className="mx-2">·</span> </CardContent>
<Link href="https://weexnes.dev/legal" className="hover:underline" target="_blank"> </Card>
Legal </div>
</Link> );
</footer>
</div>
);
} }