"use client" import * as React from "react" import Link from "next/link" import { Button } from "@/shared/components/ui/button" import { Input } from "@/shared/components/ui/input" import { Label } from "@/shared/components/ui/label" import { cn } from "@/shared/lib/utils" import { Loader2, Github } from "lucide-react" type LoginFormProps = React.HTMLAttributes export function LoginForm({ className, ...props }: LoginFormProps) { const [isLoading, setIsLoading] = React.useState(false) async function onSubmit(event: React.SyntheticEvent) { event.preventDefault() setIsLoading(true) setTimeout(() => { setIsLoading(false) }, 3000) } return (

Welcome back

Enter your email to sign in to your account

Forgot password?
Or continue with

Don't have an account?{" "} Sign up

) }