diff --git a/src/app/[locale]/page.tsx b/src/app/[locale]/page.tsx index 3db6997..dcbcbc8 100644 --- a/src/app/[locale]/page.tsx +++ b/src/app/[locale]/page.tsx @@ -1,5 +1,6 @@ import { getTranslations } from 'next-intl/server' import { SubmitForm } from '@/components/SubmitForm' +import { ReassuranceSection } from '@/components/ReassuranceSection' export default async function Home({ params, @@ -8,10 +9,29 @@ export default async function Home({ }) { const { locale } = await params const t = await getTranslations({ locale, namespace: 'home' }) + return ( -
-

{t('heading')}

- +
+
+

+ {t('heading')} +

+

+ {t('subheading')} +

+ +

+ {t('formats')} +

+
+ +
) }