From 462b79b74f563c97d2cc665a35c84509e4c5ce3a Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 17:33:47 +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..8b95ddc --- /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 - uncomment the pages you want to enable +const navItems: NavItem[] = [ + { + title: "الرئيسية", + link: "/", + }, + { + title: "محتوى الكورس", + link: "#content", + }, + { + title: "الأسعار", + link: "#pricing", + }, + { + title: "التسجيل", + link: "#cta", + }, +]; + +export function NavBar() { + return ( + +
+ +
+
+ +
+
+ ); +}