19 lines
No EOL
517 B
TypeScript
19 lines
No EOL
517 B
TypeScript
import { Page } from '@geist-ui/core';
|
|
import PageSeo from "@components/page-seo";
|
|
import Auth from "@components/auth";
|
|
import Header from "@components/header/header";
|
|
import styles from '@styles/Home.module.css'
|
|
const SignIn = () => (
|
|
<Page width={"100%"}>
|
|
<PageSeo title="Drift - Sign In" />
|
|
|
|
<Page.Header>
|
|
<Header />
|
|
</Page.Header>
|
|
<Page.Content className={styles.main}>
|
|
<Auth page="signin" />
|
|
</Page.Content>
|
|
</Page>
|
|
)
|
|
|
|
export default SignIn |