chore: deps

This commit is contained in:
iCrawl
2023-02-27 21:55:46 +01:00
parent 71a427f632
commit 1f86d8578a
29 changed files with 5617 additions and 2911 deletions

View File

@@ -1,4 +1,3 @@
import { ServerThemeProvider } from 'next-themes';
import type { PropsWithChildren } from 'react';
import '@unocss/reset/tailwind.css';
@@ -9,19 +8,8 @@ import '../styles/main.css';
export default function RootLayout({ children }: PropsWithChildren) {
return (
<ServerThemeProvider
attribute="class"
defaultTheme="system"
disableTransitionOnChange
value={{
light: 'light',
dark: 'dark',
}}
>
<html lang="en">
<head />
<body className="dark:bg-dark-800 bg-white">{children}</body>
</html>
</ServerThemeProvider>
<html lang="en">
<body className="dark:bg-dark-800 bg-white">{children}</body>
</html>
);
}