From 9a14289472734de43615066c27a41e1a1d14a0cf Mon Sep 17 00:00:00 2001 From: Muragesh-24 Date: Thu, 21 May 2026 16:08:34 +0530 Subject: [PATCH 1/2] feat : added footer --- src/app/layout.tsx | 10 ++++- src/components/Footer.tsx | 81 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 src/components/Footer.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ab1a645..e83145d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,6 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import Footer from "@/components/Footer"; import Providers from "./providers"; import "./globals.css"; @@ -44,8 +45,13 @@ export default function RootLayout({ }} /> - - {children} + +
+
+ {children} +
+
+
); diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 00000000..53b44794 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,81 @@ +import Link from "next/link"; + +const year = new Date().getFullYear(); + +export default function Footer() { + return ( + + ); +} \ No newline at end of file From 9b8cd8564b18d5ba3f37e3c4bdecbe795d25be80 Mon Sep 17 00:00:00 2001 From: Muragesh-24 Date: Thu, 21 May 2026 20:23:23 +0530 Subject: [PATCH 2/2] added : eof --- src/components/Footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 53b44794..084a6b01 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -78,4 +78,4 @@ export default function Footer() { ); -} \ No newline at end of file +}