mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-20 03:15:57 +01:00
23 lines
442 B
JavaScript
23 lines
442 B
JavaScript
|
import { ThemeProvider } from "next-themes";
|
||
|
import "../styles/globals.css";
|
||
|
import Head from "next/head";
|
||
|
|
||
|
const MyApp = ({ Component, pageProps }) => {
|
||
|
return (
|
||
|
<>
|
||
|
<Head>
|
||
|
<title>DeskCut</title>
|
||
|
</Head>
|
||
|
<ThemeProvider
|
||
|
attribute="class"
|
||
|
defaultTheme="system"
|
||
|
enableSystem="true"
|
||
|
>
|
||
|
<Component {...pageProps} />
|
||
|
</ThemeProvider>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default MyApp;
|