diff --git a/.markdown/test2.md b/.markdown/test2.md new file mode 100644 index 0000000..a40cad1 --- /dev/null +++ b/.markdown/test2.md @@ -0,0 +1,9 @@ +## Code + +```js +var foo = function (bar) { + return bar++; +}; + +console.log(foo(5)); +``` diff --git a/app/Footer.tsx b/app/Footer.tsx new file mode 100644 index 0000000..a1414c4 --- /dev/null +++ b/app/Footer.tsx @@ -0,0 +1,40 @@ +import React from "react"; +import styles from "../styles/Footer.module.scss"; +import Image from "next/image"; +export default function Footer() { + return ( + + ); +} diff --git a/app/layout.tsx b/app/layout.tsx index b6398dc..3ef7239 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,6 @@ import "../styles/globals.scss"; import Nav from "./Nav"; +import Footer from "./Footer"; export default function RootLayout({ children, @@ -14,6 +15,7 @@ export default function RootLayout({