import "bootstrap/dist/css/bootstrap.min.css"; import type { AppProps } from "next/app"; import Layout from "../components/Layout"; function MyApp({ Component, pageProps }: AppProps) { return ( ); } export default MyApp;