CoastalCommitsPastes/client/pages/index.tsx

52 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-03-12 23:40:28 -05:00
import styles from '@styles/Home.module.css'
import { Page, Spacer, Text } from '@geist-ui/core'
2022-03-07 19:42:47 -05:00
2022-03-12 23:40:28 -05:00
import Header from '@components/header'
2022-03-07 19:42:47 -05:00
import { ThemeProps } from './_app'
2022-03-12 23:40:28 -05:00
import Document from '@components/document'
import Image from 'next/image'
2022-03-12 23:40:28 -05:00
import ShiftBy from '@components/shift-by'
import PageSeo from '@components/page-seo'
export function getStaticProps() {
const introDoc = process.env.WELCOME_CONTENT
return {
props: {
introContent: introDoc,
introTitle: process.env.WELCOME_TITLE,
}
}
}
type Props = ThemeProps & {
introContent: string
}
2022-03-10 15:51:26 -05:00
const Home = ({ theme, changeTheme, introContent }: Props) => {
2022-03-07 19:42:47 -05:00
return (
2022-03-07 21:36:36 -05:00
<Page className={styles.container} width="100%">
2022-03-12 23:13:35 -05:00
<PageSeo />
2022-03-07 19:42:47 -05:00
<Page.Header>
<Header theme={theme} changeTheme={changeTheme} />
</Page.Header>
<Page.Content width={"var(--main-content-width)"} margin="auto" paddingTop={"var(--gap)"}>
<div style={{ display: 'flex', flexDirection: 'row', alignItems: 'center' }}>
<ShiftBy y={-2}><Image src={'/assets/logo-optimized.svg'} width={'48px'} height={'48px'} alt="" /></ShiftBy>
<Spacer />
<Text style={{ display: 'inline' }} h1> Welcome to Drift</Text>
</div>
2022-03-07 19:42:47 -05:00
<Document
editable={false}
content={introContent}
title={`Welcome to Drift.md`}
initialTab={`preview`}
/>
2022-03-07 19:42:47 -05:00
</Page.Content>
2022-03-12 23:13:35 -05:00
</Page>
2022-03-07 19:42:47 -05:00
)
}
export default Home