import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { useNavigate } from 'react-router-dom'; import { Lock, Mail, ArrowRight } from 'lucide-react'; export default function Login() { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const navigate = useNavigate(); const handleLogin = (e: React.FormEvent) => { e.preventDefault(); // Simulate login if (email && password) { navigate('/admin'); } }; return (
{/* Visual Side */}
Exclusive Entrance

Management
Portal

{/* Form Side */}

Admin Login

setEmail(e.target.value)} />
setPassword(e.target.value)} />
); }
top of page
tvlive.png
sponsorfn.png
intro1 copy.png

Haute Couture

© 2010 by  HD Fashion TV

bottom of page