From 68294912bd11b3399c7b89ce1c23dbb8f35d8bd8 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 19:05:18 +0000 Subject: [PATCH] Deploy --- src/components/layout/Navigation.tsx | 59 ++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/components/layout/Navigation.tsx diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx new file mode 100644 index 0000000..046c91a --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,59 @@ +'use client'; + +import { useState } from 'react'; +import { Hotel, Menu, X } from 'lucide-react'; +import Link from 'next/link'; + +export default function Navigation() { + const [isOpen, setIsOpen] = useState(false); + + return ( +
+ +
+
+ {/* Logo */} + +
+ +
+ Masai Suites + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Rooms + setIsOpen(false)}>Our Story + setIsOpen(false)}>Special Offers + setIsOpen(false)}>Gallery + setIsOpen(false)}>Location + setIsOpen(false)}>Book a Room +
+ )} +
+
+ ); +}