From ebed4d62a5c017ae85d05a640d8de064cedeb908 Mon Sep 17 00:00:00 2001 From: Adithyakp86 Date: Sun, 17 Aug 2025 11:16:42 +0530 Subject: [PATCH] foter added --- src/components/Footer.tsx | 204 ++++++++++++++++++++++++++++++++++++++ src/components/Layout.tsx | 6 +- 2 files changed, 208 insertions(+), 2 deletions(-) create mode 100644 src/components/Footer.tsx diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 00000000..f496c0d2 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,204 @@ +import React from 'react'; +import { Heart, Mail, Phone, MapPin, Github, Linkedin, Twitter, Facebook, ExternalLink } from 'lucide-react'; + +const Footer: React.FC = () => { + const currentYear = new Date().getFullYear(); + + return ( + + ); +}; + +export default Footer; diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a87fdeec..8e0afd72 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,14 +1,16 @@ import React from 'react'; import { Outlet } from 'react-router-dom'; import Navbar from './Navbar'; +import Footer from './Footer'; const Layout: React.FC = () => { return ( -
+
-
+
+
); };