From 1eb457ef33238e5d3bd4fda44cf37cc2e497723e Mon Sep 17 00:00:00 2001 From: Ela Yildiz Date: Tue, 12 May 2026 15:26:14 +1200 Subject: [PATCH 1/7] feat(components): add initial footer component --- src/app/(frontend)/layout.tsx | 6 +- src/components/footer.tsx | 104 ++++++++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+), 2 deletions(-) create mode 100644 src/components/footer.tsx diff --git a/src/app/(frontend)/layout.tsx b/src/app/(frontend)/layout.tsx index ee03e77..6d102fd 100644 --- a/src/app/(frontend)/layout.tsx +++ b/src/app/(frontend)/layout.tsx @@ -2,6 +2,7 @@ import { Inter, Staatliches } from "next/font/google" import type React from "react" import { Navbar } from "@/components" import "./globals.css" +import Footer from "@/components/footer" const staatliches = Staatliches({ subsets: ["latin"], @@ -26,9 +27,10 @@ export default async function RootLayout(props: { children: React.ReactNode }) { return ( - + -
{children}
+
{children}
+