CoastalCommitsPastes/client/pages/signup.tsx

16 lines
400 B
TypeScript
Raw Normal View History

import { Page } from '@geist-ui/core';
2022-03-13 01:40:28 -03:00
import Auth from "@components/auth";
import PageSeo from '@components/page-seo';
import styles from '@styles/Home.module.css'
2022-03-06 16:46:59 -08:00
const SignUp = () => (
2022-03-07 18:36:36 -08:00
<Page width="100%">
2022-03-13 01:13:35 -03:00
<PageSeo title="Drift - Sign Up" />
<Page.Content className={styles.main}>
2022-03-06 16:46:59 -08:00
<Auth page="signup" />
</Page.Content>
</Page>
)
export default SignUp