From c99e64800147da7cc76d241d529ab1ee4be1be5a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 18:35:17 +0000 Subject: [PATCH] Deploy --- src/components/layout/Footer.tsx | 112 +++++++++++++++++++++++++++++++ 1 file changed, 112 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..014e111 --- /dev/null +++ b/src/components/layout/Footer.tsx @@ -0,0 +1,112 @@ +import { Camera, Globe, Linkedin, Mail, MapPin, MessageCircle, Phone, X } from 'lucide-react' + +import Link from 'next/link' + +export default function Footer() { + const year = new Date().getFullYear() + + const quickLinks = [ + { label: 'Home', href: '/' }, + { label: 'Bespoke Safari Experiences', href: '/#safari-experiences' }, + { label: 'Sanctuary Suites', href: '/#luxury-suites' }, + { label: 'Our Story', href: '/#our-story' }, + { label: 'Photo Gallery', href: '/#photo-gallery' }, + { label: 'Contact', href: '/#contact' }, + { label: 'Services', href: '/services' }, + ] + + return ( + + ) +}