import { ReactElement } from "react";
// components
import { SignUpView } from "@/components/page-views";
// helpers
import { EPageTypes } from "@/helpers/authentication.helper";
// layouts
import DefaultLayout from "@/layouts/default-layout";
// type
import { NextPageWithLayout } from "@/lib/types";
// wrappers
import { AuthenticationWrapper } from "@/lib/wrappers";
const HomePage: NextPageWithLayout = () => ;
HomePage.getLayout = function getLayout(page: ReactElement) {
return (
{page}
);
};
export default HomePage;