From 8cae240dd467d883701e2a8b05f2d47eb564f37a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 13:27:24 +0000 Subject: [PATCH] Deploy --- src/components/layout/Footer.tsx | 97 ++++++++++++++++++++++++++++++++ 1 file changed, 97 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..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 ( + + ) +}