import logo from "@/assets/tsv-icon.png.asset.json";

interface LogoProps {
  className?: string;
}

/**
 * The Sylver Voice brand mark — the silver "V" with feather quill,
 * radiant halo and soundwave.
 */
export function Logo({ className }: LogoProps) {
  return (
    <img
      src={logo.url}
      className={className}
      alt="The Sylver Voice"
      width={500}
      height={500}
      loading="eager"
    />
  );
}
