From 8e0996c1a4b526d22a207a7372b3cf64e802f125 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 3 Jun 2026 16:38:51 +0000 Subject: [PATCH] Deploy --- src/components/layout/Navigation.tsx | 53 ++++++++++++++++++++++++++++ 1 file changed, 53 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..4c8c5f3 --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,53 @@ +'use client'; + +import { useState } from 'react'; +import { Menu, UtensilsCrossed, X } from 'lucide-react'; +import Link from 'next/link'; + +export default function Navigation() { + const [isOpen, setIsOpen] = useState(false); + + return ( +
+ +
+
+ {/* Logo */} + +
+ +
+ La Roc + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Menu + setIsOpen(false)}>Gallery + setIsOpen(false)}>Contact +
+ )} +
+
+ ); +}