diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx new file mode 100644 index 0000000..c35931a --- /dev/null +++ b/src/components/layout/Footer.tsx @@ -0,0 +1,97 @@ +'use client' +import { Camera, Globe, Mail, MapPin, MessageCircle, Phone, Video, X } from 'lucide-react' + +import Link from 'next/link' + +export default function Footer() { + const currentYear = new Date().getFullYear() + + const quickLinks = [ + { label: 'Home', href: '/' }, + { label: 'Products', href: '/products' }, + { label: 'Latest Drops', href: '/#latest-drops' }, + { label: 'Featured Collections', href: '/#featured-collections' }, + { label: 'About', href: '/#about-vault' }, + { label: 'Authenticity Guarantee', href: '/#authentication-guarantee' }, + { label: 'Gallery', href: '/#gallery' }, + ] + + return ( + + ) +}