feat(layout): add dark mode background class to body element

Updated the body element in the layout component to include a background class supporting dark mode. This change enhances the application's theme capability by accommodating dark mode styling.
This commit is contained in:
Mathis H (Avnyr) 2024-09-27 16:57:48 +02:00
parent e417e46dee
commit 47361f453f
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -17,7 +17,7 @@ export default function RootLayout({
return (
<html lang="en">
<body
className={`antialiased`}
className={`antialiased bg-background dark`}
>
{children}
</body>