CoastalCommitsPastes/client/pages/signin.tsx

15 lines
365 B
TypeScript
Raw Normal View History

2022-04-09 20:48:19 -04:00
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 = () => (
2022-04-09 20:48:19 -04:00
<Page width={"100%"}>
<PageSeo title="Drift - Sign In" />
<Page.Content className={styles.main}>
<Auth page="signin" />
</Page.Content>
</Page>
2022-03-06 19:46:59 -05:00
)
export default SignIn