// Age gate modal — blocks site on first visit until 21+ confirmed const AgeGate = ({onAccept}) => { const [open, setOpen] = React.useState(() => !localStorage.getItem("ssl_age_ok")); if (!open) return null; const accept = () => { localStorage.setItem("ssl_age_ok", "1"); setOpen(false); onAccept && onAccept(); }; return (
Age Verification · 21+ Are you 21
or older?
By entering this site you confirm you are of legal age in your jurisdiction and agree to our Terms of Use and Privacy Policy. We'll remember your choice on this device.
CCPA Compliant · Cookie set on accept
); }; window.AgeGate = AgeGate;