20 lines
563 B
TypeScript
20 lines
563 B
TypeScript
"use client";
|
|
|
|
// components
|
|
import { AuthBase } from "@/components/auth-screens/auth-base";
|
|
// helpers
|
|
import { EAuthModes, EPageTypes } from "@/helpers/authentication.helper";
|
|
// assets
|
|
import DefaultLayout from "@/layouts/default-layout";
|
|
import { AuthenticationWrapper } from "@/lib/wrappers/authentication-wrapper";
|
|
|
|
const SignUpPage = () => (
|
|
<DefaultLayout>
|
|
<AuthenticationWrapper pageType={EPageTypes.NON_AUTHENTICATED}>
|
|
<AuthBase authType={EAuthModes.SIGN_UP} />
|
|
</AuthenticationWrapper>
|
|
</DefaultLayout>
|
|
);
|
|
|
|
export default SignUpPage;
|