EDIBLES

EDIBLES

EDIBLES

Chubby Chews Male Enhancement

Kream Tablets

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Elephant Tranquilizer 20 Count Tapioca

D9-10mg's Tapioca Cube Bags 100mg Total

Kream Tablets + Pseudo

Live Rosin + Terps 500mg THC 5 Count Bags

Kream Tablets + Pseudo + MIT

Load More

Load More

Chubby Chews Male Enhancement

Kream Tablets

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Elephant Tranquilizer 20 Count Tapioca

D9-10mg's Tapioca Cube Bags 100mg Total

Kream Tablets + Pseudo

Live Rosin + Terps 500mg THC 5 Count Bags

Kream Tablets + Pseudo + MIT

Load More

Load More

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.

) : null; }