2022-03-22 23:06:15 -04:00
|
|
|
import { Page } from '@geist-ui/core';
|
2022-03-12 23:40:28 -05:00
|
|
|
import PageSeo from "@components/page-seo";
|
|
|
|
import Auth from "@components/auth";
|
2022-03-22 23:06:15 -04:00
|
|
|
import Header from "@components/header/header";
|
|
|
|
import styles from '@styles/Home.module.css'
|
|
|
|
const SignIn = () => (
|
2022-03-07 21:36:36 -05:00
|
|
|
<Page width={"100%"}>
|
2022-03-12 23:13:35 -05:00
|
|
|
<PageSeo title="Drift - Sign In" />
|
|
|
|
|
2022-03-06 19:46:59 -05:00
|
|
|
<Page.Header>
|
2022-03-22 23:06:15 -04:00
|
|
|
<Header />
|
2022-03-06 19:46:59 -05:00
|
|
|
</Page.Header>
|
2022-03-22 23:06:15 -04:00
|
|
|
<Page.Content className={styles.main}>
|
2022-03-06 19:46:59 -05:00
|
|
|
<Auth page="signin" />
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
|
|
|
|
export default SignIn
|