diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 6f59ce22c..e14fbb523 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -13,6 +13,10 @@ import { setRequestLocale } from 'next-intl/server'; import { Inter } from 'next/font/google'; import { mapFileSlugToTranslated } from '@/lib/slugs'; +import { TransitionProvider } from '@/components/providers/TransitionProvider'; +import { PageTransitionShutter } from '@/components/providers/PageTransitionShutter'; +import { InitialLoader } from '@/components/providers/InitialLoader'; + const inter = Inter({ subsets: ['latin'], display: 'swap', @@ -164,21 +168,25 @@ export default async function Layout(props: { - -
- -
- {children} -
+ + + + +
+ +
+ {children} +
-