15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
import { Page } from '@geist-ui/core';
|
|
import Auth from "@components/auth";
|
|
import PageSeo from '@components/page-seo';
|
|
import styles from '@styles/Home.module.css'
|
|
|
|
const SignUp = () => (
|
|
<Page width="100%">
|
|
<PageSeo title="Drift - Sign Up" />
|
|
<Page.Content className={styles.main}>
|
|
<Auth page="signup" />
|
|
</Page.Content>
|
|
</Page>
|
|
)
|
|
|
|
export default SignUp
|