1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-12-08 00:44:30 +01:00
.profile/pages/setup.tsx

32 lines
710 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
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