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