import "../styles/global.sass" import type { AppProps } from "next/app" import Layout from "../components/layout" function MyApp({ Component, pageProps }: AppProps) { return ( ) } export default MyApp