This commit is contained in:
2026-01-17 02:57:53 +01:00
parent de87c62312
commit 021d23ab93
21 changed files with 967 additions and 578 deletions

View File

@@ -16,11 +16,11 @@ export default async function LocaleLayout({
const messages = await getMessages();
return (
<html lang={locale}>
<body className="flex flex-col min-h-screen">
<html lang={locale} className="scroll-smooth">
<body className="flex flex-col min-h-screen font-sans selection:bg-accent selection:text-primary-dark">
<NextIntlClientProvider messages={messages} locale={locale}>
<Header />
<main className="flex-grow">
<main className="flex-grow animate-fade-in">
{children}
</main>
<Footer />