"use client"; import GitHubStarButton from "@/components/github-star-button"; import config from "@/config"; import { minecrafter } from "@/font/fonts"; import { cn } from "@/lib/utils"; import Image from "next/image"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { ReactElement } from "react"; /** * The navbar for the site. * * @returns the navbar jsx */ const Navbar = (): ReactElement => { const path: string = usePathname(); // Get the current path return ( ); }; export default Navbar;