From e3bf6321bcf15ad33885b76ed85a2e4015217fde Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 17:52:32 +0000 Subject: [PATCH] Deploy --- src/components/layout/Footer.tsx | 122 +++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 src/components/layout/Footer.tsx diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx new file mode 100644 index 0000000..505ad73 --- /dev/null +++ b/src/components/layout/Footer.tsx @@ -0,0 +1,122 @@ +'use client' + +import { Camera, Globe, Mail, MapPin, MessageCircle, Phone, Video, X } from 'lucide-react'; + +const footerLinks = [ + { label: 'Home', href: '/' }, + { label: 'Products', href: '/products' }, + { label: 'Featured', href: '/#featured-products' }, + { label: 'Our Story', href: '/#our-story' }, + { label: 'Drops', href: '/#drops' }, + { label: 'Lookbook', href: '/#lookbook' }, + { label: 'Contact', href: '/#contact' }, +]; + +export default function Footer() { + const currentYear = new Date().getFullYear(); + + return ( + + ); +} \ No newline at end of file