Files
supanextail/pages/signup.tsx
2021-12-16 23:45:43 +01:00

29 lines
746 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} | Auth`}
description={`This is the auth page for ${process.env.NEXT_PUBLIC_TITLE}`}
/>
<Layout>
<div className="flex flex-wrap w-full mt-20 justify-evenly">
<AuthText />
<AuthComponent />
</div>
</Layout>
</>
);
export default SignUpPage;