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