[dyad] Fixed 404 error by correcting i18n layout structure - wrote 1 file(s), deleted 1 file(s)

This commit is contained in:
[dyad]
2026-01-18 12:41:48 +01:00
parent 2136a2dd79
commit bf43b37267
2 changed files with 4 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import "../globals.css";
import { ThemeProvider } from "@/components/theme-provider";
import { Toaster } from "@/components/ui/sonner";
@@ -21,11 +21,13 @@ export const metadata: Metadata = {
export default function RootLayout({
children,
params: { locale }
}: Readonly<{
children: React.ReactNode;
params: { locale: string };
}>) {
return (
<html lang="en" suppressHydrationWarning>
<html lang={locale} suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>