1
0
Fork 0

fix(org): page props in welcome

This commit is contained in:
joostdecock 2023-04-16 19:45:21 +02:00
parent f0e40e6884
commit 13b30a6720

View file

@ -33,7 +33,7 @@ const WelcomePage = (props) => {
return (
<PageWrapper app={app} title={t('title')} layout={BareLayout} footer={false}>
<DynamicAuthWrapper app={app}>
<div className="m-auto max-w-lg text-center lg:mt-12 p-8">
<div className="m-auto max-w-lg text-center lg:mt-24 p-8">
<DynamicControl app={app} title welcome />
</div>
</DynamicAuthWrapper>
@ -47,6 +47,9 @@ export async function getStaticProps({ locale }) {
return {
props: {
...(await serverSideTranslations(locale)),
page: {
path: ['welcome'],
},
},
}
}