2022-03-21 20:30:45 -07:00
|
|
|
import Page from "@geist-ui/core/dist/page";
|
2022-03-13 01:40:28 -03:00
|
|
|
import Auth from "@components/auth";
|
|
|
|
import Header from "@components/header";
|
|
|
|
import PageSeo from '@components/page-seo';
|
2022-03-21 20:30:45 -07:00
|
|
|
import type { ThemeProps } from "@lib/types";
|
2022-03-06 16:46:59 -08:00
|
|
|
|
|
|
|
const SignUp = ({ theme, changeTheme }: ThemeProps) => (
|
2022-03-07 18:36:36 -08:00
|
|
|
<Page width="100%">
|
2022-03-13 01:13:35 -03:00
|
|
|
<PageSeo title="Drift - Sign Up" />
|
|
|
|
|
2022-03-06 16:46:59 -08:00
|
|
|
<Page.Header>
|
2022-03-07 16:42:47 -08:00
|
|
|
<Header theme={theme} changeTheme={changeTheme} />
|
2022-03-06 16:46:59 -08:00
|
|
|
</Page.Header>
|
2022-03-09 01:33:22 -08:00
|
|
|
<Page.Content width={"var(--main-content-width)"} paddingTop={"var(--gap)"} margin="auto">
|
2022-03-06 16:46:59 -08:00
|
|
|
<Auth page="signup" />
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
|
2022-03-09 17:47:54 -08:00
|
|
|
export default SignUp
|