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 LoginPage() { return (
{/* Social Login */} {/* Divider */}
Or continue with email
{/* Login Form */}
Forgot password?
{/* Sign up link */}

Don't have an account?{' '} Sign up

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