import React from "react"; import Link from "next/link"; import { ThemeToggle } from "@/components/theme-toggler"; import { NavbarMobile, NavbarMobileBtn } from "./nav-mobile"; import { NavLink } from "./nav-link"; import { Logo } from "./logo"; 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", }, ];