1
0
Fork 0

fix(org): page props in welcome/img

This commit is contained in:
joostdecock 2023-04-16 19:41:57 +02:00
parent 34499bd23e
commit 47fa170249

View file

@ -33,7 +33,7 @@ const ImgPage = (props) => {
return (
<PageWrapper app={app} title={t('imgTitle')} 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">
<DynamicImg app={app} title welcome />
</div>
</DynamicAuthWrapper>
@ -47,6 +47,9 @@ export async function getStaticProps({ locale }) {
return {
props: {
...(await serverSideTranslations(locale, namespaces)),
page: {
path: ['welcome', 'img'],
},
},
}
}