From 06e28ad7fb299bccfa412d1ae9a42cc7b541836d Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Thu, 26 Jun 2025 10:19:50 +0900 Subject: [PATCH] Add `Footer` component to `demo-2`: implement basic layout, links, and integrate into `layout.tsx` --- lawfirm-demos/demo-2/app/layout.tsx | 2 ++ lawfirm-demos/demo-2/components/Footer.tsx | 33 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 lawfirm-demos/demo-2/components/Footer.tsx diff --git a/lawfirm-demos/demo-2/app/layout.tsx b/lawfirm-demos/demo-2/app/layout.tsx index 232d660..8c80fc1 100644 --- a/lawfirm-demos/demo-2/app/layout.tsx +++ b/lawfirm-demos/demo-2/app/layout.tsx @@ -3,6 +3,7 @@ import {Geist, Geist_Mono} from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; import React from "react"; +import Footer from "@/components/Footer"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -31,6 +32,7 @@ export default function RootLayout({ > {children} +