diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx new file mode 100644 index 0000000..b95c942 --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,57 @@ +'use client'; + +import { useState } from 'react'; +import { Menu, X } from 'lucide-react'; +import Link from 'next/link'; + +export default function Navigation() { + const [isOpen, setIsOpen] = useState(false); + + return ( +
+ +
+
+ {/* Logo */} + +
+ T +
+ Thornveld Game Lodge + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Thornveld Experiences + setIsOpen(false)}>Our Family Roots + setIsOpen(false)}>Seasonal Specials + setIsOpen(false)}>Bush Gallery + setIsOpen(false)}>Contact Enquiry +
+ )} +
+
+ ); +}