mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-12-08 00:44:30 +01:00
32 lines
710 B
TypeScript
32 lines
710 B
TypeScript
|
import { GetStaticProps } from 'next'
|
||
|
import useTranslation from 'next-translate/useTranslation'
|
||
|
|
||
|
import { Section } from 'components/design/Section'
|
||
|
import Head from 'components/Head'
|
||
|
import { Setup } from 'components/Setup'
|
||
|
|
||
|
const SetupPage: React.FC = () => {
|
||
|
const { t } = useTranslation()
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Head title={t('setup:title')} description={t('setup:description')} />
|
||
|
|
||
|
<Section
|
||
|
id='setup'
|
||
|
style={{ marginTop: 60 }}
|
||
|
description={t('setup:description')}
|
||
|
heading={t('setup:title')}
|
||
|
>
|
||
|
<Setup />
|
||
|
</Section>
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export const getStaticProps: GetStaticProps = async () => {
|
||
|
return { props: {} }
|
||
|
}
|
||
|
|
||
|
export default SetupPage
|