"use client"; import React from "react"; import { Divider, Link } from "@heroui/react"; import { routes } from "@/shared/config/routes"; import OAuthProviders from "../components/OAuthProviders"; import ProvisionRegister from "../components/provision/main"; type Props = { changeCurrentPage: React.Dispatch>; }; const Signup = ({ changeCurrentPage }: Props) => { return (
Create an account
{/* Email form */}
{/* Sign up link */}

Already have an account?{" "} Log in

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