import { getBuildInformation } from "@/common/website-utils"; import Link from "next/link"; type NavbarItem = { name: string; link: string; openInNewTab?: boolean; }; const items: NavbarItem[] = [ { name: "Home", link: "/", }, { name: "Source", link: "https://git.fascinated.cc/Fascinated/scoresaber-reloadedv3", openInNewTab: true, }, { name: "Twitter", link: "https://x.com/ssr_reloaded", openInNewTab: true, }, { name: "Discord", link: "https://discord.gg/kmNfWGA4A8", openInNewTab: true, }, ]; export default function Footer() { const { buildId, buildTime, buildTimeShort } = getBuildInformation(); return (

Build: {buildId}

({buildTime})

({buildTimeShort})

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