mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
33 lines
852 B
TypeScript
33 lines
852 B
TypeScript
/*
|
|
This is the login/register page.
|
|
You have 2 components, the "AuthComponent" that handle the logic,
|
|
and the "AuthText" that will show the description on the left of the screen
|
|
*/
|
|
|
|
import AuthComponent from 'components/SignUp';
|
|
import AuthText from 'components/AuthText';
|
|
import Layout from 'components/Layout';
|
|
import { NextSeo } from 'next-seo';
|
|
|
|
const SignUpPage = (): JSX.Element => (
|
|
<>
|
|
<NextSeo
|
|
title={`${
|
|
process.env.NEXT_PUBLIC_TITLE ? process.env.NEXT_PUBLIC_TITLE : ''
|
|
} | Auth`}
|
|
description={`This is the auth page for ${
|
|
process.env.NEXT_PUBLIC_TITLE ? process.env.NEXT_PUBLIC_TITLE : ''
|
|
}`}
|
|
/>
|
|
|
|
<Layout>
|
|
<div className="flex flex-wrap w-full mt-20 justify-evenly">
|
|
<AuthText />
|
|
<AuthComponent />
|
|
</div>
|
|
</Layout>
|
|
</>
|
|
);
|
|
|
|
export default SignUpPage;
|