darkmode by default - so that the colors don't f up on lightmode devices

This commit is contained in:
Dhravya Shah 2024-06-18 17:53:24 -05:00
parent a7dc883bc4
commit ca8f2bbcea
2 changed files with 26 additions and 28 deletions

View file

@ -62,11 +62,8 @@ export default function RootLayout({
}): JSX.Element {
return (
<html lang="en">
{/* <head>
<ThemeScript />
</head> */}
{/* TODO: when lightmode support is added, remove the 'dark' class from the body tag */}
<body className={`${inter.className} dark`}>{children}</body>
<body className={`${inter.className}`}>{children}</body>
</html>
);
}