mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
23 lines
516 B
TypeScript
23 lines
516 B
TypeScript
import "../styles/globals.css";
|
|
import Head from "next/head";
|
|
import { AppProps } from "next/app";
|
|
import { Provider } from "jotai";
|
|
import "react-tooltip/dist/react-tooltip.css";
|
|
import { Toaster } from "@/components/ui/toaster";
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Upscayl</title>
|
|
</Head>
|
|
<Provider>
|
|
<Component {...pageProps} data-theme="upscayl" />
|
|
<Toaster />
|
|
</Provider>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MyApp;
|