interface SiteLogoProps { /** Extra classes (e.g. color overrides) */ className?: string; /** Wordmark font-size in px — matches the slot it replaces */ size?: number; } /** * SiteLogo — Tenext Technologies wordmark. * * Temporary text logo in the project's Sora typography, used until an * official logo asset is supplied. Rendered on dark surfaces (navbar, * footer), so it defaults to white with a teal accent dot. */ export function SiteLogo({ className = "", size = 22 }: SiteLogoProps) { return ( Tenext. ); }