CBD Products

Bedtime D8 : CBN 50 count

1:5 THC / CBD Live Rosin Tapioca Cube

1:1 25mg D9 + 25mg CBG

1:1 25mg D9 + 25mg CBN Tapioca

1:1 D9/CBD Tapioca Cubes

Good Life CBN 3000mg Gummy

Good Life Broad Spectrum CBD gummies

Good Life Full Spectrum CBD gummies

Sleepy 9: 300mg Delta 9 150mg CBN Gummies

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.


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