'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 (
{step}
© 2025 ScanMenu. All rights reserved.
Start your 14-day free trial. No credit card required.
Already have an account?{' '} Sign in