import Link from "next/link"; type LogoProps = { href?: string; className?: string; showWordmark?: boolean; }; /** Shared logo (mark + optional wordmark). Use in header, footer, auth. */ export function Logo({ href = "/", className = "", showWordmark = true }: LogoProps) { const content = ( <>