"use client"; import React from "react"; import { Divider, Link } from "@heroui/react"; import { routes } from "@/shared/config/routes"; import EmailInput from "../components/EmailInput"; import OAuthProviders from "../components/OAuthProviders"; const Login = () => { 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 Login;