aboutsummaryrefslogtreecommitdiff
path: root/apps/web
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-06-18 17:53:24 -0500
committerDhravya Shah <[email protected]>2024-06-18 17:53:24 -0500
commitca8f2bbcea3a89b0b8d3c59eeeaeeece8f84876b (patch)
tree721a4dd4f4f30ffe3fd22a44a970c643089fab2d /apps/web
parentwidget (diff)
downloadsupermemory-ca8f2bbcea3a89b0b8d3c59eeeaeeece8f84876b.tar.xz
supermemory-ca8f2bbcea3a89b0b8d3c59eeeaeeece8f84876b.zip
darkmode by default - so that the colors don't f up on lightmode devices
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/app/layout.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx
index 8d7cd5ea..1b5558bb 100644
--- a/apps/web/app/layout.tsx
+++ b/apps/web/app/layout.tsx
@@ -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>
);
}