2022-03-13 01:40:28 -03: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'
|
2022-03-22 20:06:15 -07:00
|
|
|
import { Page } from '@geist-ui/core'
|
2022-03-30 20:01:24 -07:00
|
|
|
import Head from 'next/head'
|
2022-03-06 17:41:30 -08:00
|
|
|
|
2022-03-22 20:06:15 -07:00
|
|
|
const New = () => {
|
2022-03-06 16:46:59 -08:00
|
|
|
return (
|
2022-03-24 18:03:57 -07:00
|
|
|
<Page className={styles.wrapper}>
|
2022-03-13 01:13:35 -03:00
|
|
|
<PageSeo title="Drift - New" />
|
2022-03-30 20:01:24 -07:00
|
|
|
<Head>
|
2022-03-30 20:03:57 -07:00
|
|
|
{/* TODO: solve this. */}
|
2022-03-30 20:01:24 -07:00
|
|
|
{/* eslint-disable-next-line @next/next/no-css-tags */}
|
|
|
|
<link rel="stylesheet" href="/css/react-datepicker.css" />
|
|
|
|
</Head>
|
2022-03-06 17:41:30 -08:00
|
|
|
<Page.Header>
|
2022-03-22 20:06:15 -07:00
|
|
|
<Header />
|
2022-03-06 17:41:30 -08:00
|
|
|
</Page.Header>
|
2022-03-06 16:46:59 -08:00
|
|
|
|
2022-03-22 20:06:15 -07:00
|
|
|
<Page.Content className={styles.main}>
|
2022-03-21 20:30:45 -07:00
|
|
|
<NewPost />
|
2022-03-06 16:46:59 -08:00
|
|
|
</Page.Content>
|
|
|
|
</Page >
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-03-21 01:36:31 -07:00
|
|
|
export default New
|