From 85a4ccfad8136cb59b4b33c243a7ad490df90e6c Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:03:39 +0000 Subject: [PATCH] Update components/navbar/index.tsx --- components/navbar/index.tsx | 58 +++++++++++++++++++++++++++++++++++++ 1 file changed, 58 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..fe89f21 --- /dev/null +++ b/components/navbar/index.tsx @@ -0,0 +1,58 @@ +"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 ( + +
+ +
+
+ +
+
+ ); +}