[dyad] Adding multi-language support - wrote 17 file(s), renamed 5 file(s), deleted 1 file(s), added next-international package(s)

This commit is contained in:
[dyad]
2026-01-18 14:17:35 +01:00
parent eb7e8cb60d
commit 31bbdbdace
19 changed files with 666 additions and 193 deletions

View File

@@ -0,0 +1,55 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "../globals.css";
import { ThemeProvider } from "@/components/theme-provider";
import { Toaster } from "@/components/ui/sonner";
import { Footer } from "@/components/footer";
import { I18nProviderClient } from "@/lib/i18n/client";
import { getI18n } from "@/lib/i18n/server";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export async function generateMetadata({ params: { locale } }: { params: { locale: string } }): Promise<Metadata> {
const t = await getI18n();
return {
title: t('meta.title'),
description: t('meta.description'),
};
}
export default function RootLayout({
children,
params: { locale }
}: Readonly<{
children: React.ReactNode;
params: { locale: string };
}>) {
return (
<html lang={locale} suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<I18nProviderClient locale={locale}>
<ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
>
{children}
<Footer />
<Toaster />
</ThemeProvider>
</I18nProviderClient>
</body>
</html>
);
}