diff --git a/src/app/components/footer.tsx b/src/app/components/footer.tsx new file mode 100644 index 0000000..f39bbe1 --- /dev/null +++ b/src/app/components/footer.tsx @@ -0,0 +1,23 @@ +import Link from "next/link"; + +export default function Footer() { + return ( + + ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f744d7d..56598b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import { Lexend } from "next/font/google"; import "./globals.css"; import Header from "./components/header"; +import Footer from "./components/footer"; const lexend = Lexend({ subsets: ["latin"], @@ -26,6 +27,7 @@ export default function RootLayout({
{children}
+