update page layout

This commit is contained in:
Trance-0
2024-11-18 07:13:11 -06:00
parent 1a0afdc06c
commit 0a700837ee
13 changed files with 462 additions and 294 deletions

View File

@@ -1,3 +1,9 @@
import { ThemeProvider } from 'next-themes'
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />
return (
<ThemeProvider attribute='class'>
<Component {...pageProps} />
</ThemeProvider>
)
}