import '../styles/globals.css'; import type { AppProps } from 'next/app'; import Image from 'next/future/image'; import config from '../config'; function MyApp({ Component, pageProps }: AppProps) { return ( <> logo

{config.title}

) } export default MyApp;