From 1b6bb98af1014c500c75de376c87a9b6bfa7ffb9 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Sun, 24 Aug 2025 22:17:26 +0100 Subject: feat: add footer with contact information MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add Footer component with inbox@fctdrive.xyz contact email - Update main layout to include footer at bottom of all pages - Use flexbox layout to ensure footer stays at bottom 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/app/layout.tsx | 8 ++++++-- frontend/components/Footer.tsx | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 frontend/components/Footer.tsx diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index 0e1d82e..bd113e2 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import { Toaster } from "@/components/ui/toaster"; +import { Footer } from "@/components/Footer"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -26,9 +27,12 @@ export default function RootLayout({ return ( - {children} +
+ {children} +
+