import Link from "next/link"; import { ThemeToggle } from "@/components/theme-toggler"; import Image from "next/image"; import { NavbarMobileBtn } from "./nav-mobile"; import { NavLink } from "./nav-link"; import { Logo } from "./logo"; import { PulicBetaBadge } from "./beta/badge"; import { useState } from "react"; import { MenuIcon, X } from "lucide-react"; export const Navbar = () => { return ( ); }; export const navMenu = [ { name: "helo_", path: "/", }, { name: "docs", path: "/docs", }, { name: "changelogs", path: "/changelogs", }, { name: "community", path: "https://discord.gg/GYC3W7tZzb", }, ];