From b60f1000eea7433a6c6d39e9152b09d45a37aa44 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:33:14 +0000 Subject: [PATCH] Update components/navbar/index.tsx --- components/navbar/index.tsx | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 components/navbar/index.tsx diff --git a/components/navbar/index.tsx b/components/navbar/index.tsx new file mode 100644 index 0000000..dfe6bbd --- /dev/null +++ b/components/navbar/index.tsx @@ -0,0 +1,41 @@ +"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 ( + +
+ +
+
+ +
+
+ ); +}