interface LogoMarkProps { className?: string; } /** * The ksan.dev "Kd" monogram — two vertical bars (the K stem and d ascender) * with the K's arms and the d's bowl in brand purple. Geometry is taken * directly from the source artwork (kd.svg) and shared with app/icon.svg and * app/[locale]/opengraph-image.tsx so every surface uses the same mark. * * The bars use `currentColor` (pass a text color via `className`, e.g. * "text-white"); the arms/bowl are fixed to the brand purple. */ export function LogoMark({ className }: LogoMarkProps) { return ( ); } export default LogoMark;