export default function GoogleLogin() { const handleLoginClick = (e: React.MouseEvent) => { e.preventDefault(); const nextUrl = encodeURIComponent(window.location.href); window.location.href = `/api/login/google?next=${nextUrl}`; }; return (
); }