mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-19 19:05:56 +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;
|