import Image from "next/image"; import { cn } from "@/lib/utils"; interface LogoProps { size?: "sm" | "md" | "lg"; showText?: boolean; className?: string; } const SIZES = { sm: 28, md: 36, lg: 48 }; export function Logo({ size = "md", showText = true, className }: LogoProps) { const px = SIZES[size]; return ( ExposedGays {showText && ( ExposedGays )} ); }