import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" export function LoginForm({ className, ...props }: React.ComponentPropsWithoutRef<"div">) { return (
Welcome back Login with your Apple or Google account
Or continue with
Don't have an account?{" "} Sign up
By clicking continue, you agree to our Terms of Service{" "} and Privacy Policy.
) }