import Link from 'next/link'; import { useRouter } from 'next/router'; import { useCart } from '../context/CartContext'; const NAV_LINKS = [ { href: '/', label: 'Home' }, { href: '/products', label: 'Products' }, { href: '/cart', label: 'Cart' }, ]; export default function SiteLayout({ children }) { const router = useRouter(); const { itemCount } = useCart(); return (
Full Moon Bakehouse