"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 (
); }