mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
TypeScript
16 lines
364 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
|