[dyad] Enable dark mode - wrote 2 file(s)

This commit is contained in:
[dyad]
2026-01-30 08:15:30 +01:00
parent 74ac37aa92
commit 670519dba2
2 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="en" className="dark">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
@@ -31,4 +31,4 @@ export default function RootLayout({
</body>
</html>
);
}
}