import Image from "next/image"; import { cn } from "@/lib/utils"; interface BrandLogoProps { className?: string; /** Pixel height of the mark */ height?: number; priority?: boolean; } /** Official krypco logo mark (color geometry). */ export function BrandLogo({ className, height = 36, priority = false, }: BrandLogoProps) { const width = Math.round(height * (231.602 / 236)); return ( krypco ); }