/* Epic Custom Lighting — SVG logo components.
"EPIC" wordmark with the signature gold light-beam inside the E counter. */
const EpicLogo = ({ variant = "horizontal", invert = false, className = "", style = {} }) => {
// Dark version (cream "EPIC" on near-black) is canonical; use it on dark surfaces.
// For light surfaces, use the original (black "EPIC" on white).
const src = invert ? 'assets/epic-logo-dark.png' : 'assets/epic-logo.png';
return (
);
};
const SparkleStar = ({ size = 24, color = "#c9a961", className = "", style = {} }) =>
;
Object.assign(window, { EpicLogo, SparkleStar });