"use client"; import React from "react"; import { AuthRoot } from "@/components/account/auth-forms/auth-root"; import type { EAuthModes } from "@/helpers/authentication.helper"; import { AuthFooter } from "./footer"; import { AuthHeader } from "./header"; type AuthBaseProps = { authType: EAuthModes; }; export const AuthBase = ({ authType }: AuthBaseProps) => (