import config from "@/config"; import localFont from "next/font/local"; import Link from "next/link"; /** * The title font to use to brand the site. */ const minecrafter = localFont({ src: "../font/Minecrafter.ttf", }); /** * The navbar for the site. * * @returns the navbar jsx */ const Navbar = () => ( ); export default Navbar;