2022-04-09 20:48:19 -04:00
|
|
|
import { Page } from "@geist-ui/core"
|
|
|
|
import Auth from "@components/auth"
|
|
|
|
import PageSeo from "@components/page-seo"
|
|
|
|
import styles from "@styles/Home.module.css"
|
2022-03-06 19:46:59 -05:00
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
const SignUp = () => (
|
2022-04-09 20:48:19 -04:00
|
|
|
<Page width="100%">
|
|
|
|
<PageSeo title="Drift - Sign Up" />
|
|
|
|
<Page.Content className={styles.main}>
|
|
|
|
<Auth page="signup" />
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
2022-03-06 19:46:59 -05:00
|
|
|
)
|
|
|
|
|
2022-03-09 20:47:54 -05:00
|
|
|
export default SignUp
|