29 lines
905 B
JavaScript
29 lines
905 B
JavaScript
import '@fortawesome/fontawesome-svg-core/styles.css';
|
|
import "../style.css";
|
|
import Header from './components/Header';
|
|
import Footer from './components/Footer';
|
|
// import App from 'next/app'
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<div className="root-container">
|
|
<Header />
|
|
<Component {...pageProps} />
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// Only uncomment this method if you have blocking data requirements for
|
|
// every single page in your application. This disables the ability to
|
|
// perform automatic static optimization, causing every page in your app to
|
|
// be server-side rendered.
|
|
//
|
|
// MyApp.getInitialProps = async (appContext) => {
|
|
// // calls page's `getInitialProps` and fills `appProps.pageProps`
|
|
// const appProps = await App.getInitialProps(appContext);
|
|
//
|
|
// return { ...appProps }
|
|
// }
|
|
|
|
export default MyApp |