"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" interface RegisterFormProps extends React.HTMLAttributes {} export function RegisterForm({ className, ...props }: RegisterFormProps) { const [isLoading, setIsLoading] = React.useState(false) async function onSubmit(event: React.SyntheticEvent) { event.preventDefault() setIsLoading(true) setTimeout(() => { setIsLoading(false) }, 3000) } return (

Create an account

Enter your email below to create your account

Or continue with

Already have an account?{" "} Sign in

) }