/** * Trouve-KA — wordmark « Trouve » + chip « KA » (signature Groupe KA) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ import { cn } from "@/lib/utils"; interface WordmarkProps { /** * `header` : encre sur papier, chip encre/texte lime (hover rotate-0 via * `group` sur le lien parent). `footer` : papier sur encre, chip lime. * `hero` : géant, pour la homepage. */ variant?: "header" | "footer" | "hero"; className?: string; } export function Wordmark({ variant = "header", className }: WordmarkProps) { const base = variant === "footer" ? "text-[26px] text-paper" : variant === "hero" ? "text-5xl text-ink sm:text-6xl" : "text-[21px] text-ink sm:text-[24px]"; return ( Trouve {variant === "footer" ? ( KA ) : variant === "hero" ? ( KA ) : ( KA )} ); }