From 2160a3c73dd26cff7d8d0cc0d9e8d347756fd64b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 16:13:28 +0000 Subject: [PATCH] Deploy --- src/components/layout/Navigation.tsx | 74 ++++++++++++++++++++++++++++ 1 file changed, 74 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..8a77cce --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,74 @@ +'use client'; + +import { useState } from 'react'; +import { Home, House, Menu, ShoppingBag, ShoppingCart, User, X } from 'lucide-react'; +import Link from 'next/link'; +import { useVulaCart } from '@/hooks/useVulaCart'; +import { useCustomerAuth } from '@/hooks/useCustomerAuth'; + +export default function Navigation() { + const [isOpen, setIsOpen] = useState(false); + const { itemCount } = useVulaCart(); + const { isAuthenticated } = useCustomerAuth(); + + return ( +
+ +
+
+ {/* Logo */} + +
+ +
+ Ukaya Home + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Our Story + setIsOpen(false)}>Most Popular + setIsOpen(false)}>Gallery + setIsOpen(false)}>Contact + setIsOpen(false)}>Products + setIsOpen(false)}> + + My Account + +
+ )} +
+
+ ); +}