2022-03-06 19:46:59 -05:00
|
|
|
import { Page } from "@geist-ui/core";
|
2022-03-09 20:47:54 -05:00
|
|
|
import Head from "next/head";
|
2022-03-06 19:46:59 -05:00
|
|
|
import Auth from "../components/auth";
|
2022-03-07 19:42:47 -05:00
|
|
|
import Header from "../components/header";
|
2022-03-06 19:46:59 -05:00
|
|
|
import { ThemeProps } from "./_app";
|
|
|
|
|
|
|
|
const SignUp = ({ theme, changeTheme }: ThemeProps) => (
|
2022-03-07 21:36:36 -05:00
|
|
|
<Page width="100%">
|
2022-03-09 20:47:54 -05:00
|
|
|
<Head>
|
|
|
|
<title>Drift - Sign Up</title>
|
|
|
|
<meta name="description" content="A self-hostable clone of GitHub Gist" />
|
|
|
|
</Head>
|
2022-03-06 19:46:59 -05:00
|
|
|
<Page.Header>
|
2022-03-07 19:42:47 -05:00
|
|
|
<Header theme={theme} changeTheme={changeTheme} />
|
2022-03-06 19:46:59 -05:00
|
|
|
</Page.Header>
|
2022-03-09 04:33:22 -05:00
|
|
|
<Page.Content width={"var(--main-content-width)"} paddingTop={"var(--gap)"} margin="auto">
|
2022-03-06 19:46:59 -05:00
|
|
|
<Auth page="signup" />
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
|
2022-03-09 20:47:54 -05:00
|
|
|
export default SignUp
|