From 21a2d05d3a962de75c84c8eb2b6fa09546cc9eba Mon Sep 17 00:00:00 2001 From: elpatron Date: Mon, 12 Jan 2026 23:56:24 +0100 Subject: [PATCH] feat: add footer with attribution and source link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Create Footer component with author info and repo link - Add footer to root layout (appears on all pages) - Include dedication to Lilly & Diego 🐈 🐈‍⬛ --- app/[lang]/layout.tsx | 4 +++- components/footer.tsx | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 components/footer.tsx diff --git a/app/[lang]/layout.tsx b/app/[lang]/layout.tsx index 1814974..91818ad 100644 --- a/app/[lang]/layout.tsx +++ b/app/[lang]/layout.tsx @@ -14,6 +14,7 @@ const geistMono = Geist_Mono({ }); import { getDictionary } from "@/get-dictionary"; +import { Footer } from "@/components/footer"; export async function generateMetadata({ params }: { params: Promise<{ lang: string }> }): Promise { const { lang } = await params; @@ -41,9 +42,10 @@ export default async function RootLayout({ return ( {children} +