TypeScript 93.3%
JavaScript 4.4%
CSS 2.3%
1/**2 * Author: Simon-Pierre Boucher3 * Contact: contact@spboucher.ai4 * Project: Hilmacorp.ai — Web Platform5 * File: components/Logo.tsx6 * Description: Hilmacorp.ai wordmark with geometric monogram (light theme)7 */89export default function Logo({ className = "" }: { className?: string }) {10 return (11 <span className={`inline-flex items-center gap-2.5 ${className}`}>12 <svg13 width="28"14 height="28"15 viewBox="0 0 28 28"16 fill="none"17 aria-hidden="true"18 className="shrink-0"19 >20 <rect x="1" y="1" width="26" height="26" rx="7" fill="#191f1c" />21 <path d="M9 8v12M19 8v12M9 14h10" stroke="#2fbd8b" strokeWidth="2.4" strokeLinecap="round" />22 </svg>23 <span className="font-display text-xl font-semibold tracking-tight text-ink">24 Hilmacorp<span className="text-accent">.ai</span>25 </span>26 </span>27 );28}29