// OVERCUT PPF logo — uses the brand SVG asset directly.
// `variant`: "full" shows the full square emblem (mark + PPF + dark plate);
// "mark" shows only the OC mark area, color-shifted via mask.
// For the navbar pill we use the raw image; for footer we go bigger.
const Logo = ({ className = "h-8", showPlate = true }) => {
if (showPlate) {
return (
);
}
// Plate-less variant: render the SVG inside a CSS mask so it picks up currentColor.
return (
);
};
window.Logo = Logo;