added legal and privacy links
This commit is contained in:
parent
1143365a00
commit
613637157c
1 changed files with 26 additions and 25 deletions
|
@ -5,11 +5,17 @@ import Link from "next/link";
|
|||
|
||||
export default function LoginPage() {
|
||||
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">
|
||||
<CardHeader className="text-center">
|
||||
<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>
|
||||
<CardTitle className="text-3xl font-bold tracking-tight font-headline">Welcome Back</CardTitle>
|
||||
<CardDescription>Sign in to access your VividCDN account.</CardDescription>
|
||||
|
@ -18,15 +24,10 @@ export default function LoginPage() {
|
|||
<LoginForm />
|
||||
</CardContent>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue