mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
TypeScript
15 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
|