All Products

All Products

All Products

Click to Sort by Category

Click to Sort by Category

Click to Sort by Category

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

1750's 8+9 Tapioca Chews

Good Life CBN 3000mg Gummy

Good Life Broad Spectrum CBD gummies

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