import type { AppType } from 'next/app' import { ThemeProvider } from 'next-themes' import '../styles/globals.css' const MyApp: AppType = ({ Component, pageProps }) => { return ( ) } export default MyApp