From 177618113056fcff90e6b50f66feb0ebf85dbe2a Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 14:29:14 +0000 Subject: [PATCH] Update components/navbar/index.tsx --- components/navbar/index.tsx | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 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..d6915ee --- /dev/null +++ b/components/navbar/index.tsx @@ -0,0 +1,42 @@ +"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: "Home", + link: "/", + }, +]; + +export function NavBar() { + return ( + +
+ +
+
+ +
+
+ ); +}