/** * PieCed honeycomb mark. * * Six flat-top hexagons: H1/H4 solid, H2/H3 outline, H5/H6 partial. * All strokes/fills use `currentColor` so the mark inherits its colour * from the surrounding text colour (e.g. `text-accent`) and adapts to * hover/theme without editing the SVG. Original brand emerald is * #10B981, which the accent token matches. * * viewBox is portrait (70×106); size it by height and let width follow * (`h-7 w-auto`). */ export function Logo({ className, title = "PieCed IT", }: { className?: string; title?: string; }) { return ( {title} {/* H1 — solid, top-left */} {/* H2 — outline, upper-right */} {/* H3 — outline, mid-left */} {/* H4 — solid, mid-right */} {/* H5 — partial, lower-left */} {/* H6 — partial, lower-right */} ); }