HOME
SHOP
CONTACT US
LAB RESULTS
LEARN MORE
0
0
0
Pet Products
Pet Products
Pet Products
Canine Delicious CBD Pet Treat Bag
Add to cart
250mg Pet Tincture Chicken oil
Add to cart
500mg Pet Tinctures Good Life
Add to cart
HOME
SHOP
CONTACT
LAB RESULTS
LEARN MORE
SITEMAP
FDA DISCLOSURE
RETURN POLICY
FAQ
STORE LOCATOR
RESTRICTIONS
HOME
SHOP
LEARN MORE
CONTACT
LAB RESULTS
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; }