import NavbarButton from "@/components/navbar/navbar-button"; import Link from "next/link"; import { getBuildInformation } from "@/common/website-utils"; type NavbarItem = { name: string; link: string; }; const items: NavbarItem[] = [ { name: "Home", link: "/", }, { name: "Source", link: "https://git.fascinated.cc/Fascinated/scoresaber-reloadedv3", }, ]; export default function Footer() { const { buildId, buildTime } = getBuildInformation(); return (

Build: {buildId} ({buildTime})

{items.map((item, index) => { return ( {item.name} ); })}
); }