ScanMenu / src /app /(auth) /register /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, User, Store } from 'lucide-react';
import { useRouter } from 'next/navigation';
export default function RegisterPage() {
const [loading, setLoading] = useState(false);
const router = useRouter();
const handleRegister = (e: React.FormEvent) => {
e.preventDefault();
setLoading(true);
setTimeout(() => {
router.push('/dashboard/overview');
}, 800);
};
return (
<div className="flex min-h-screen">
{/* Left Panel */}
<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-8">
<h2 className="text-3xl font-bold leading-tight text-white">
Launch your digital menu in under 5 minutes
</h2>
<div className="space-y-4">
{[
'Create your restaurant profile',
'Build beautiful menus with drag & drop',
'Generate QR codes for every table',
'Start receiving orders instantly',
].map((step, i) => (
<div key={i} className="flex items-center gap-3">
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-emerald-500/20 text-sm font-bold text-emerald-400">
{i + 1}
</div>
<p className="text-sm text-zinc-300">{step}</p>
</div>
))}
</div>
</div>
<p className="text-sm text-zinc-500">&copy; 2025 ScanMenu. All rights reserved.</p>
</div>
{/* Right Panel */}
<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">Create your account</h1>
<p className="mt-2 text-sm text-zinc-500">Start your 14-day free trial. No credit card required.</p>
</div>
<form onSubmit={handleRegister} className="space-y-4">
<div className="grid grid-cols-2 gap-3">
<div className="space-y-2">
<label className="text-sm font-medium text-zinc-700">First Name</label>
<div className="relative">
<User className="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-zinc-400" />
<Input placeholder="Alex" className="pl-10" />
</div>
</div>
<div className="space-y-2">
<label className="text-sm font-medium text-zinc-700">Last Name</label>
<Input placeholder="Rivera" />
</div>
</div>
<div className="space-y-2">
<label className="text-sm font-medium text-zinc-700">Restaurant Name</label>
<div className="relative">
<Store className="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-zinc-400" />
<Input placeholder="The Garden Kitchen" className="pl-10" />
</div>
</div>
<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" className="pl-10" />
</div>
</div>
<div className="space-y-2">
<label className="text-sm font-medium text-zinc-700">Password</label>
<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="Min. 8 characters" 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" />
) : (
<>Create Account <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">
Already have an account?{' '}
<Link href="/login" className="font-semibold text-emerald-600 hover:text-emerald-500">
Sign in
</Link>
</p>
</div>
</div>
</div>
);
}