42 lines
1.7 KiB
TypeScript
42 lines
1.7 KiB
TypeScript
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
|
|
import { Button } from '@/components/ui/button'
|
|
import Link from 'next/link'
|
|
import { Monitor, Lock, ArrowRight } from 'lucide-react'
|
|
|
|
export default function SignUpPage() {
|
|
return (
|
|
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
|
|
<div className="w-full max-w-md">
|
|
<div className="flex flex-col items-center gap-6">
|
|
<div className="flex items-center gap-2">
|
|
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-primary">
|
|
<Monitor className="h-5 w-5 text-primary-foreground" />
|
|
</div>
|
|
<span className="text-2xl font-bold">RemoteLink</span>
|
|
</div>
|
|
|
|
<Card className="w-full border-border/50">
|
|
<CardHeader className="text-center">
|
|
<div className="mx-auto mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-primary/10">
|
|
<Lock className="h-8 w-8 text-primary" />
|
|
</div>
|
|
<CardTitle className="text-2xl">Invite only</CardTitle>
|
|
<CardDescription className="text-balance">
|
|
RemoteLink is invite-only. To get access, contact your administrator for an invite link.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Button asChild className="w-full">
|
|
<Link href="/auth/login">
|
|
Sign in
|
|
<ArrowRight className="ml-2 h-4 w-4" />
|
|
</Link>
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|