From 22e8761f910257ac79b1790e814103dc6358fc5a Mon Sep 17 00:00:00 2001 From: rharkor Date: Mon, 27 May 2024 15:55:34 +0200 Subject: [PATCH] fix: font variables --- apps/app/src/app/[lang]/layout.tsx | 2 +- apps/app/src/app/not-found.tsx | 4 +++- apps/landing/src/app/[lang]/layout.tsx | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/app/src/app/[lang]/layout.tsx b/apps/app/src/app/[lang]/layout.tsx index a474bb2e..33297c3e 100644 --- a/apps/app/src/app/[lang]/layout.tsx +++ b/apps/app/src/app/[lang]/layout.tsx @@ -46,7 +46,7 @@ export default async function RootLayout({ return ( {children} diff --git a/apps/app/src/app/not-found.tsx b/apps/app/src/app/not-found.tsx index 3a2a4ed7..4630ab0e 100644 --- a/apps/app/src/app/not-found.tsx +++ b/apps/app/src/app/not-found.tsx @@ -20,7 +20,9 @@ export default async function Page404MatchAll() { }) return ( - +

{dictionary.notFound}

diff --git a/apps/landing/src/app/[lang]/layout.tsx b/apps/landing/src/app/[lang]/layout.tsx index 5f745c14..29aeedeb 100644 --- a/apps/landing/src/app/[lang]/layout.tsx +++ b/apps/landing/src/app/[lang]/layout.tsx @@ -23,7 +23,9 @@ export default function RootLayout({ children, params }: { children: React.React return ( - {children} + + {children} + ) }