From dad57e65c3bd0622b60c10924fe6871aa67ccd4c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 17:20:23 +0000 Subject: [PATCH] Deploy --- src/components/layout/Navigation.tsx | 76 ++++++++++++++++++++++++++++ 1 file changed, 76 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..eba4af9 --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,76 @@ +'use client'; + +import { useState } from 'react'; +import { 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 */} + +
+ +
+ Kasi Drip + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>About Kasi Drip + setIsOpen(false)}>Campaign Lookbook + setIsOpen(false)}>Gallery + setIsOpen(false)}>C T A Shop Drops + setIsOpen(false)}>Collab Enquiry + setIsOpen(false)}>Products + setIsOpen(false)}> + + My Account + +
+ )} +
+
+ ); +}