import Link from 'next/link' import { ArrowLeft } from 'lucide-react' import { AuthLayout } from '@/components/auth/auth-layout' import { SocialLoginButtons } from '@/components/auth/social-login-buttons' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' export default function RegisterPage() { return (
{/* Social Login */} {/* Divider */}
Or continue with email
{/* Register Form */}
{/* Log in link */}

Already have an account?{' '} Log in

{/* Back to home */}
Back to home
) }