'use client' import { motion } from "motion/react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Lock, Mail } from "lucide-react"; import { useState } from "react"; import { createClient } from '@/utils/supabase/client' export default function Login() { const supabase = createClient(); const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); const [error, setError] = useState(null); const handleLogin = async () => { setError(null); const { error } = await supabase.auth.signInWithPassword({ email, password }); if (error) setError(error.message); }; const handleGoogleSignIn = async () => { const { error } = await supabase.auth.signInWithOAuth({ provider: 'google' }); if (error) setError(error.message); }; return (
{/* Card */}

Login

{error &&

{error}

}
setEmail(e.target.value)} />
setPassword(e.target.value)} />

or

Don't have an account? Register

); }