/* global React */ // Reyes de la Calle wordmark — recreated from the brand mockup const RDCLogo = ({ size = 1, light = true, className = "" }) => { const orange = "#FF6D0D"; const white = light ? "#F8F9FA" : "#0D0D0D"; return (
{/* Crown */} {/* Wordmark */}
REYES
DE LA CALLE
{/* Basketball lines behind */}
); }; // White monochrome version of the official Reyes de la Calle logo // Used in nav header + footer for contrast on dark backgrounds const RDCLogoMono = ({ height = 56, className = "" }) => { const W = "#FFFFFF"; return ( {/* Hand-drawn crown */} {/* REYES — italic bold display */} REYES {/* DE LA CALLE — stacked compact */} DE LA CALLE {/* Basketball outline on the right, sketchy */} ); }; // Just the crown icon, used in small spots const CrownMark = ({ size = 28, color = "#FF6D0D" }) => ( ); Object.assign(window, { RDCLogo, RDCLogoMono, CrownMark });