From 72f5b59d4206568a0f05f49f33c8477c614812fb Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:40:56 +0000 Subject: [PATCH] Deploy --- src/components/layout/Footer.tsx | 138 +++++++++++++++++++++++++++++++ 1 file changed, 138 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..cfd2c2b --- /dev/null +++ b/src/components/layout/Footer.tsx @@ -0,0 +1,138 @@ +import { Camera, Clock, Globe, Mail, MapPin, MessageCircle, Phone, X } from 'lucide-react'; +; + +const footerLinks = [ + { label: 'Home', href: '/' }, + { label: 'Book a Room', href: '/booking' }, + { label: 'Our Story', href: '/#our-story' }, + { label: 'Specials', href: '/#specials' }, + { label: 'Gallery', href: '/#gallery' }, + { label: 'Cultural Insights', href: '/#cultural-insights' }, + { label: 'Contact', href: '/#contact' }, +]; + +export default function Footer() { + const currentYear = new Date().getFullYear(); + + return ( + + ); +}