'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 (
{/* Left Panel */}
ScanMenu

Launch your digital menu in under 5 minutes

{[ 'Create your restaurant profile', 'Build beautiful menus with drag & drop', 'Generate QR codes for every table', 'Start receiving orders instantly', ].map((step, i) => (
{i + 1}

{step}

))}

© 2025 ScanMenu. All rights reserved.

{/* Right Panel */}
ScanMenu

Create your account

Start your 14-day free trial. No credit card required.

or continue with

Already have an account?{' '} Sign in

); }