--- /** * The footer on prerendered pages. * * main.ts builds its own on the app page, where it can also name the API and * arena builds it just talked to. Nothing here talks to the API, so this one * names the site's build and stops. */ import { PROJECT_LINKS } from "../project-links"; import { DISCLAIMER_AFTER, DISCLAIMER_BEFORE, DISCLAIMER_LINK_HREF, DISCLAIMER_LINK_TEXT, } from "../site-disclaimer"; const version = import.meta.env.DEV ? "dev" : (import.meta.env.VITE_BUILD_REF ?? "unstamped"); ---