From cdca9153fdf29faa1a6ffd2473f25933aa98de45 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:53:41 +0000 Subject: [PATCH] Update components/navbar/index.tsx --- components/navbar/index.tsx | 54 +++++++++++++++++++++++++++++++++++++ 1 file changed, 54 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..0f72a7a --- /dev/null +++ b/components/navbar/index.tsx @@ -0,0 +1,54 @@ +"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 - updated for smooth scrolling +const navItems: NavItem[] = [ + { + title: "Home", + link: "/", + }, + { + title: "Services", + link: "#services", + }, + { + title: "Results", + link: "#results", + }, + { + title: "Book a Call", + link: "#book", + }, +]; + +export function NavBar() { + return ( + +
+ +
+
+ +
+
+ ); +}