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