|
|
|
@ -23,12 +23,14 @@ export default function App({ Component, pageProps }: AppProps): JSX.Element { |
|
|
|
|
<MDXProvider components={{ a: Link }}> |
|
|
|
|
<div className={styles.appContainer}> |
|
|
|
|
<Navbar /> |
|
|
|
|
{/* Wrapping content with a ShapesBackground to allow for shapes in the background and a display: block parent */} |
|
|
|
|
<ShapesBackground> |
|
|
|
|
<Layout> |
|
|
|
|
<Component {...pageProps} /> |
|
|
|
|
</Layout> |
|
|
|
|
</ShapesBackground> |
|
|
|
|
{/* Wrapping content with a div to allow for a display: block parent */} |
|
|
|
|
<div className={styles.contentContainer}> |
|
|
|
|
<ShapesBackground> |
|
|
|
|
<Layout> |
|
|
|
|
<Component {...pageProps} /> |
|
|
|
|
</Layout> |
|
|
|
|
</ShapesBackground> |
|
|
|
|
</div> |
|
|
|
|
<Footer /> |
|
|
|
|
</div> |
|
|
|
|
</MDXProvider> |
|
|
|
|