Melting Forest Cans D-Stress and Energy

Melting Forest Cans D-Stress and Energy

Melting Forest Cans D-Stress and Energy

Product Info

Product Info

Product Info

MSRP $6

MSRP $6

MSRP $6

More Products

More Products

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Ass Kicker 20 Count Tapioca Cubes

1:5 THC / CBD Live Rosin Tapioca Cube

D9-10mg's Live Rosin 500mg Tapioca

1:1 25mg D9 + 25mg CBG

1:1 25mg D9 + 25mg CBN Tapioca

1:1 D9/CBD Tapioca Cubes

Car Diffusers

Load More

Load More

Load More

FDA DISCLOSURE: These statements have not been evaluated by the Food and Drug Administration. These products are not intended to diagnose, treat, cure, or prevent any disease

THCA products cannot be shipped to the following states, per state guidelines: Arkansas, Idaho, Minnesota, Oregon, and Rhode Island.

Delta 8 products cannot be shipped to the following states, per state guidelines: AR, CA, CO, CT,DE, GA, HI, ID, IN,IA, KS, MA, MS,MT, NV, NH, NY,ND, OR, RI, SC,UT, VA, VT,WA, WV.

FDA DISCLOSURE: These statements have not been evaluated by the Food and Drug Administration. These products are not intended to diagnose, treat, cure, or prevent any disease

THCA products cannot be shipped to the following states, per state guidelines: Arkansas, Idaho, Minnesota, Oregon, and Rhode Island.

Delta 8 products cannot be shipped to the following states, per state guidelines: AR, CA, CO, CT,DE, GA, HI, ID, IN,IA, KS, MA, MS,MT, NV, NH, NY,ND, OR, RI, SC,UT, VA, VT,WA, WV.

FDA DISCLOSURE: These statements have not been evaluated by the Food and Drug Administration. These products are not intended to diagnose, treat, cure, or prevent any disease

THCA products cannot be shipped to the following states, per state guidelines: Arkansas, Idaho, Minnesota, Oregon, and Rhode Island.

Delta 8 products cannot be shipped to the following states, per state guidelines: AR, CA, CO, CT,DE, GA, HI, ID, IN,IA, KS, MA, MS,MT, NV, NH, NY,ND, OR, RI, SC,UT, VA, VT,WA, WV.


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; }