diff --git a/components/navbar/index.tsx b/components/navbar/index.tsx new file mode 100644 index 0000000..0cf7174 --- /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: "Home", + link: "/", + }, + { + title: "Explore", + link: "#explore", + }, + { + title: "Sell", + link: "#sell", + }, + { + title: "About", + link: "#about", + }, +]; + +export function NavBar() { + return ( + +
+ +
+
+ +
+
+ ); +}