diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ab1a645..e83145d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import Footer from "@/components/Footer"; import Providers from "./providers"; import "./globals.css"; @@ -44,8 +45,13 @@ export default function RootLayout({ }} /> - - {children} + +
+
+ {children} +
+
); diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 00000000..084a6b01 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,81 @@ +import Link from "next/link"; + +const year = new Date().getFullYear(); + +export default function Footer() { + return ( + + ); +}