18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
import Navbar from "../components/Navbar";
|
|
import "../styles/globals.css";
|
|
import styles from "../styles/Home.module.css";
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<div {...pageProps} className={styles.container}>
|
|
{/* Navbar */}
|
|
<Navbar />
|
|
{/* main */}
|
|
<Component className={styles.main} />
|
|
{/* footer */}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|