From 558a7e5b4a62070fb473290a6909e65bc7d12c0e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 17:42:06 +0000 Subject: [PATCH] Deploy --- src/components/layout/Navigation.tsx | 55 ++++++++++++++++++++++++++++ 1 file changed, 55 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..e2a3261 --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,55 @@ +'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 */} + +
+ +
+ Die Opstal + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Five Room Homestead + setIsOpen(false)}>Franschhoek Heritage Story + setIsOpen(false)}>Farmstead Gallery + setIsOpen(false)}>Book Your Farmstay +
+ )} +
+
+ ); +}