From 5c4952ab97ef66586dbd6007d853e325a650007c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:23 +0000 Subject: [PATCH] Deploy --- src/components/layout/Navigation.tsx | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 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..989307b --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,57 @@ +'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 */} + +
+ +
+ Zulu Lodge + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Indaba Story + setIsOpen(false)}>Umkhonto Safari + setIsOpen(false)}>Isithombe Gallery + setIsOpen(false)}>Imbizo Contact + setIsOpen(false)}>Book a Room +
+ )} +
+
+ ); +}