Add Footer

This commit is contained in:
stefan080106
2022-05-15 19:43:05 +02:00
parent 7f7a6ca119
commit a61d63e1b0

View File

@@ -1,3 +1,4 @@
import Footer from "../components/Footer";
import Navbar from "../components/Navbar"; import Navbar from "../components/Navbar";
import "../styles/globals.css"; import "../styles/globals.css";
import styles from "../styles/Home.module.css"; import styles from "../styles/Home.module.css";
@@ -10,6 +11,7 @@ function MyApp({ Component, pageProps }) {
{/* main */} {/* main */}
<Component className={styles.main} /> <Component className={styles.main} />
{/* footer */} {/* footer */}
<Footer />
</div> </div>
); );
} }