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 ( + + ) +}