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 ( -