"use client"; import GitHubStarCount from "@/components/github-star-count"; import MinecraftButton from "@/components/minecraft-button"; import { Skeleton } from "@/components/ui/skeleton"; import config from "@/config"; import { minecrafter } from "@/font/fonts"; import { cn } from "@/lib/utils"; import { StarIcon } from "@heroicons/react/24/outline"; import Image from "next/image"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Suspense } from "react"; /** * The navbar for the site. * * @returns the navbar jsx */ const Navbar = (): JSX.Element => { const path: string = usePathname(); // Get the current path return ( ); }; export default Navbar;