diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx new file mode 100644 index 0000000..21ea28f --- /dev/null +++ b/src/components/layout/Navigation.tsx @@ -0,0 +1,65 @@ +'use client'; + +import { useState } from 'react'; +import { Menu, ShoppingBag, ShoppingCart, X } from 'lucide-react'; +import Link from 'next/link'; +import { useVulaCart } from '@/hooks/useVulaCart'; + +export default function Navigation() { + const [isOpen, setIsOpen] = useState(false); + const { itemCount } = useVulaCart(); + + return ( +
+ +
+
+ {/* Logo */} + +
+ +
+ Mzansi + + + {/* Desktop nav */} + + + {/* Mobile toggle */} + +
+ + {/* Mobile nav */} + {isOpen && ( +
+ setIsOpen(false)}>Home + setIsOpen(false)}>Mzansi Story + setIsOpen(false)}>Hype Campaigns + setIsOpen(false)}>Street Style Gallery + setIsOpen(false)}>Keep Mzansi Connected + setIsOpen(false)}>Products +
+ )} +
+
+ ); +}