ScanMenu / src /app /(auth) /login /page.tsx
HamzaAri's picture
πŸš€ Deploy ScanMenu - Production-ready SaaS web app for digital restaurant menus & QR ordering
e1ef9fc verified
'use client';
import Link from 'next/link';
import { useState } from 'react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Sparkles, Mail, Lock, ArrowRight, Globe } from 'lucide-react';
import { useRouter } from 'next/navigation';
export default function LoginPage() {
const [email, setEmail] = useState('demo@scanmenu.app');
const [password, setPassword] = useState('demo1234');
const [loading, setLoading] = useState(false);
const router = useRouter();
const handleLogin = (e: React.FormEvent) => {
e.preventDefault();
setLoading(true);
setTimeout(() => {
router.push('/dashboard/overview');
}, 800);
};
return (
<div className="flex min-h-screen">
{/* Left Panel β€” Branding */}
<div className="hidden w-1/2 flex-col justify-between bg-zinc-950 p-12 lg:flex">
<div className="flex items-center gap-2.5">
<div className="flex h-9 w-9 items-center justify-center rounded-lg bg-gradient-to-br from-emerald-500 to-cyan-500">
<Sparkles className="h-5 w-5 text-white" />
</div>
<span className="text-xl font-bold text-white">
Scan<span className="text-emerald-400">Menu</span>
</span>
</div>
<div className="space-y-6">
<blockquote className="space-y-3">
<p className="text-2xl font-medium leading-relaxed text-white/90">
&ldquo;ScanMenu transformed our restaurant. Orders are faster, errors dropped to zero, and our revenue increased 32% in just 3 months.&rdquo;
</p>
<footer className="flex items-center gap-3">
<div className="h-10 w-10 rounded-full bg-gradient-to-br from-violet-500 to-fuchsia-500" />
<div>
<p className="text-sm font-semibold text-white">Maria Santos</p>
<p className="text-sm text-zinc-400">Owner, Bella Cucina</p>
</div>
</footer>
</blockquote>
</div>
<p className="text-sm text-zinc-500">&copy; 2025 ScanMenu. All rights reserved.</p>
</div>
{/* Right Panel β€” Form */}
<div className="flex w-full items-center justify-center px-4 lg:w-1/2">
<div className="w-full max-w-[400px] space-y-8">
<div className="lg:hidden flex items-center gap-2.5 justify-center mb-6">
<div className="flex h-9 w-9 items-center justify-center rounded-lg bg-gradient-to-br from-emerald-500 to-cyan-500">
<Sparkles className="h-5 w-5 text-white" />
</div>
<span className="text-xl font-bold text-zinc-900">
Scan<span className="text-emerald-600">Menu</span>
</span>
</div>
<div className="text-center lg:text-left">
<h1 className="text-2xl font-bold tracking-tight text-zinc-900">Welcome back</h1>
<p className="mt-2 text-sm text-zinc-500">Sign in to your account to continue</p>
</div>
<form onSubmit={handleLogin} className="space-y-4">
<div className="space-y-2">
<label className="text-sm font-medium text-zinc-700">Email</label>
<div className="relative">
<Mail className="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-zinc-400" />
<Input
type="email"
placeholder="name@company.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="pl-10"
/>
</div>
</div>
<div className="space-y-2">
<div className="flex items-center justify-between">
<label className="text-sm font-medium text-zinc-700">Password</label>
<button type="button" className="text-xs font-medium text-emerald-600 hover:text-emerald-500">
Forgot password?
</button>
</div>
<div className="relative">
<Lock className="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-zinc-400" />
<Input
type="password"
placeholder="β€’β€’β€’β€’β€’β€’β€’β€’"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="pl-10"
/>
</div>
</div>
<Button type="submit" variant="primary" size="lg" className="w-full" disabled={loading}>
{loading ? (
<div className="h-4 w-4 animate-spin rounded-full border-2 border-white border-t-transparent" />
) : (
<>Sign in <ArrowRight className="h-4 w-4" /></>
)}
</Button>
</form>
<div className="relative">
<div className="absolute inset-0 flex items-center">
<div className="w-full border-t border-zinc-200" />
</div>
<div className="relative flex justify-center text-xs">
<span className="bg-white px-4 text-zinc-400">or continue with</span>
</div>
</div>
<Button variant="outline" size="lg" className="w-full">
<Globe className="h-4 w-4" />
Google
</Button>
<p className="text-center text-sm text-zinc-500">
Don&apos;t have an account?{' '}
<Link href="/register" className="font-semibold text-emerald-600 hover:text-emerald-500">
Sign up free
</Link>
</p>
</div>
</div>
</div>
);
}