From 4961188575217eb64b946d1bcb4071b66b6edd37 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:41:18 +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..4e6dd6d --- /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 */} + +
+ +
+ Mpofana Lodge + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Luxury Accommodations + setIsOpen(false)}>Bush Story + setIsOpen(false)}>Guest Gallery + setIsOpen(false)}>Contact + setIsOpen(false)}>Book a Room +
+ )} +
+
+ ); +}