import type { ReactNode } from "react"; import { SOCIAL_LINKS } from "@/lib/site"; const icons: Record = { x: ( ), discord: ( ), youtube: ( ), steam: ( ), }; /** * Every channel is listed, whether or not the account exists yet: the studio * wants visitors to know where it will be. Accounts without a URL render as * plain text marked "soon" rather than as a link to `#`, which would look * functional and go nowhere. Fill in `href` in `lib/site.ts` and the entry * becomes a real link with no change here. */ export function SocialLinks() { return ( ); }