HOME
SHOP
CONTACT US
LAB RESULTS
LEARN MORE
0
Kava Products
New Brew Seltzer
Add to cart
Mitra 9 Drinks
Add to cart
HOME
SHOP
CONTACT
LAB RESULTS
LEARN MORE
SITEMAP
FDA DISCLOSURE
RETURN POLICY
FAQ
STORE LOCATOR
RESTRICTIONS
import { useEffect, useState } from "react"; export function AgeVerificationOverlay() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { const lastVisit = localStorage.getItem("lastVisit"); const today = new Date().toDateString(); if (lastVisit !== today) { setIsVisible(true); localStorage.setItem("lastVisit", today); } }, []); const handleYes = () => { setIsVisible(false); }; const handleNo = () => { window.location.href = "/404"; }; return isVisible ? (
You must be 21+ to access this site.
Yes
No
) : null; }