"use client"; import { Card, Divider, Link } from "@heroui/react"; import React from "react"; import EmailForm from "./EmailForm"; import ContinueWithProviders from "./ContinueWithProviders"; import { routes } from "@/shared/config/routes"; const LoginCard = () => { return (

Welcome Back

{/* Email form */} {/* Sign up link */}

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

{/* Divider between email form and third-party login options */}
or
{/* Buttons for third-party login options */}
); }; export default LoginCard;