Your Cart

Empty
0.00

Forget to Add Something to Your Cart?

Forget to Add Something to Your Cart?

Forget to Add Something to Your Cart?

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 D9/CBD Tapioca Cubes

1750's 8+9 Tapioca Chews

Good Life Full Spectrum CBD gummies

250mg Delta 9-10mg's Gummies

Load More

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.

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