EDIBLES

EDIBLES

EDIBLES

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Good Life CBN 3000mg Gummy

Good Life Broad Spectrum CBD gummies

Good Life Full Spectrum CBD gummies

250mg Delta 9-10mg's Gummies

Sleepy 9: 300mg Delta 9 150mg CBN Gummies

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Good Life CBN 3000mg Gummy

Good Life Broad Spectrum CBD gummies

Good Life Full Spectrum CBD gummies

250mg Delta 9-10mg's Gummies

Sleepy 9: 300mg Delta 9 150mg CBN 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.

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