Deploy
This commit is contained in:
@@ -0,0 +1,76 @@
|
|||||||
|
'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 (
|
||||||
|
<header className="sticky top-0 z-50 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
||||||
|
<style>{`html { scroll-behavior: smooth; }`}</style>
|
||||||
|
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="flex h-16 items-center justify-between">
|
||||||
|
{/* Logo */}
|
||||||
|
<Link href="/" className="flex items-center gap-2 hover:opacity-90 transition-opacity">
|
||||||
|
<div className="w-8 h-8 rounded-lg bg-primary flex items-center justify-center text-primary-foreground flex-shrink-0">
|
||||||
|
<House className="h-4 w-4" />
|
||||||
|
</div>
|
||||||
|
<span className="font-serif text-xl font-bold text-foreground">iKhaya Home</span>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
{/* Desktop nav */}
|
||||||
|
<nav className="hidden md:flex items-center gap-6">
|
||||||
|
<Link href="/" className="text-foreground/80 hover:text-primary transition-colors text-sm font-medium">Home</Link>
|
||||||
|
<a href="#our-story" className="text-foreground/80 hover:text-primary transition-colors text-sm font-medium">Ikaya Story</a>
|
||||||
|
<a href="#offers" className="text-foreground/80 hover:text-primary transition-colors text-sm font-medium">i Khaya Offers</a>
|
||||||
|
<a href="#gallery" className="text-foreground/80 hover:text-primary transition-colors text-sm font-medium">Umuzi Gallery</a>
|
||||||
|
<a href="#collections" className="text-foreground/80 hover:text-primary transition-colors text-sm font-medium">i Khaya Collections</a>
|
||||||
|
<a href="#contact" className="text-foreground/80 hover:text-primary transition-colors text-sm font-medium">Khuluma Nathi</a>
|
||||||
|
<Link href="/products" className="bg-primary text-primary-foreground px-4 py-2 rounded-lg hover:bg-primary/90 transition-colors text-sm font-medium">Products</Link>
|
||||||
|
<button onClick={() => window.dispatchEvent(new CustomEvent('cart-drawer-open'))} aria-label="Open cart" className="relative text-foreground/80 hover:text-primary transition-colors p-1">
|
||||||
|
<ShoppingCart className="h-5 w-5" />
|
||||||
|
{itemCount > 0 && (
|
||||||
|
<span className="absolute -top-2 -right-2 bg-primary text-primary-foreground text-xs rounded-full h-4 w-4 flex items-center justify-center font-bold leading-none">{itemCount > 9 ? '9+' : itemCount}</span>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
<Link href={isAuthenticated ? '/account/orders' : '/account/login'} aria-label="My account" className="text-foreground/80 hover:text-primary transition-colors p-1">
|
||||||
|
<User className="h-5 w-5" />
|
||||||
|
</Link>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/* Mobile toggle */}
|
||||||
|
<button
|
||||||
|
className="md:hidden p-2 rounded-md text-foreground hover:bg-muted transition-colors"
|
||||||
|
onClick={() => setIsOpen(!isOpen)}
|
||||||
|
aria-label="Toggle menu"
|
||||||
|
>
|
||||||
|
{isOpen ? <X className="h-6 w-6" /> : <Menu className="h-6 w-6" />}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Mobile nav */}
|
||||||
|
{isOpen && (
|
||||||
|
<div className="md:hidden border-t py-4 space-y-1 px-2">
|
||||||
|
<Link href="/" className="block px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>Home</Link>
|
||||||
|
<a href="#our-story" className="block px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>Ikaya Story</a>
|
||||||
|
<a href="#offers" className="block px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>i Khaya Offers</a>
|
||||||
|
<a href="#gallery" className="block px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>Umuzi Gallery</a>
|
||||||
|
<a href="#collections" className="block px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>i Khaya Collections</a>
|
||||||
|
<a href="#contact" className="block px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>Khuluma Nathi</a>
|
||||||
|
<Link href="/products" className="block px-3 py-2 rounded-lg bg-primary text-primary-foreground font-medium" onClick={() => setIsOpen(false)}>Products</Link>
|
||||||
|
<Link href={isAuthenticated ? '/account/orders' : '/account/login'} className="flex items-center gap-2 px-3 py-2 rounded-lg text-foreground hover:bg-muted transition-colors" onClick={() => setIsOpen(false)}>
|
||||||
|
<User className="h-4 w-4" />
|
||||||
|
<span className="text-sm font-medium">My Account</span>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user