From e041603aaa1edbc30435c4e4adb3909ce1133f5b Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Wed, 6 Nov 2024 16:42:25 +0100 Subject: [PATCH] feat: add the footer --- app/(root)/layout.jsx | 2 + components/Footer.jsx | 94 ++++++++++++++++++++++++++++++++++++++ components/SocialIcons.jsx | 77 +++++++++++++++++++++++++++++++ constants/index.jsx | 30 ++++++++++++ 4 files changed, 203 insertions(+) create mode 100644 components/Footer.jsx create mode 100644 components/SocialIcons.jsx diff --git a/app/(root)/layout.jsx b/app/(root)/layout.jsx index 4656e47..32a1c70 100644 --- a/app/(root)/layout.jsx +++ b/app/(root)/layout.jsx @@ -1,3 +1,4 @@ +import Footer from "@/components/Footer"; import Header from "@/components/Header"; export default function RootLayout({ children }) { @@ -26,6 +27,7 @@ export default function RootLayout({ children }) { ]} />*/}
{children}
+