| import '../style.css' | |
| export default function MyApp({ Component, pageProps }) { | |
| return ( | |
| <> | |
| <custom-navbar></custom-navbar> | |
| <Component {...pageProps} /> | |
| <custom-footer></custom-footer> | |
| </> | |
| ) | |
| } |
| import '../style.css' | |
| export default function MyApp({ Component, pageProps }) { | |
| return ( | |
| <> | |
| <custom-navbar></custom-navbar> | |
| <Component {...pageProps} /> | |
| <custom-footer></custom-footer> | |
| </> | |
| ) | |
| } |