import type { AppProps } from 'next/app' import { ThemeProvider } from 'theme-ui' import { theme } from '../lib/theme' function MyApp({ Component, pageProps }: AppProps) { return ( ) } export default MyApp