You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
399 B

import '../styles/globals.css'
import type { AppProps } from 'next/app'
import SiteLayout from '../layouts/global'
import Menu from '../components/menu'
import Footer from '../components/footer'
function MyApp({ Component, pageProps }: AppProps) {
return (
<SiteLayout>
<Menu />
<Component {...pageProps}></Component>
<Footer />
</SiteLayout>
)
}
export default MyApp