/** * The RareIndex mark: a cut stone (crown, girdle, pavilion) whose facets are drawn by an ascending * index line — rarity and market data in one shape. Source of truth: public/brand/rareindex-mark.svg * (favicons, PWA icons and share images are generated from it by scripts/brand-assets.mjs). */ export function LogoMark({ className, id = 'ri' }: { className?: string; id?: string }) { const gold = `${id}-gold`; const mint = `${id}-mint`; return ( ); } /** Wordmark: "Rare" in the foreground colour, "Index" in brand gold. */ export function LogoWordmark({ className }: { className?: string }) { return ( RareIndex ); } /** Static markup for Satori (next/og): no CSS variables, plain attributes, unique gradient ids. */ export function ogMark(size: number) { return ( ); }