"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: "/", }, { title: "Pricing", link: "/pricing", }, { title: "Blog", link: "/blog", }, { title: "Contact", link: "/contact", }, { title: "À propos", link: "/about", }, ]; export function NavBar() { return (
); }