2022-04-09 17:48:19 -07:00
|
|
|
import styles from "@styles/Home.module.css"
|
|
|
|
import NewPost from "@components/new-post"
|
|
|
|
import Header from "@components/header"
|
|
|
|
import PageSeo from "@components/page-seo"
|
|
|
|
import { Page } from "@geist-ui/core"
|
|
|
|
import Head from "next/head"
|
2022-03-06 17:41:30 -08:00
|
|
|
|
2022-03-22 20:06:15 -07:00
|
|
|
const New = () => {
|
2022-04-09 17:48:19 -07:00
|
|
|
return (
|
|
|
|
<Page className={styles.wrapper}>
|
|
|
|
<PageSeo title="Create a new Drift" />
|
|
|
|
<Head>
|
|
|
|
{/* TODO: solve this. */}
|
|
|
|
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
|
|
<link rel="stylesheet" href="/css/react-datepicker.css" />
|
|
|
|
</Head>
|
|
|
|
<Page.Content className={styles.main}>
|
|
|
|
<NewPost />
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
|
|
|
)
|
2022-03-06 16:46:59 -08:00
|
|
|
}
|
|
|
|
|
2022-03-21 01:36:31 -07:00
|
|
|
export default New
|