"use client"; import { DesktopNavbar } from "./desktop-navbar"; import { MobileNavbar } from "./mobile-navbar"; import { motion } from "framer-motion"; interface NavItem { title: string; link: string; } // Navigation items - uncomment the pages you want to enable const navItems: NavItem[] = [ { title: "Inicio", link: "/" }, { title: "Catálogo", link: "/#catalog" }, { title: "Rastrear Pedido", link: "/tracking" }, ]; export function NavBar() { return (
); }