Bearly Legal / Jefferies

Bearly Legal / Jefferies

Bearly Legal / Jefferies

Product Info

Product Info

Product Info

Jeffrey's Cigarettes contain no nicotine and no THC, making them a great option for those looking to quit smoking or concerned about the reults of a drug test*. Jeffrey's uses broad spectrum CBD hemp flower and unbleached paper for a more mindful consumer. Bearly Legal cigarettes contain a blend of Delta 8 THC and CBD or CBG for a relaxing or focused high. MSRP $ 7.00 ( Jefferies) per pack MSRP $ 10.00 (Bearly Legal) per pack *We do not guarantee clean drug test results while using any products sold by Thee Hemp Co. regardless of ingredients.

Jeffrey's Cigarettes contain no nicotine and no THC, making them a great option for those looking to quit smoking or concerned about the reults of a drug test*. Jeffrey's uses broad spectrum CBD hemp flower and unbleached paper for a more mindful consumer. Bearly Legal cigarettes contain a blend of Delta 8 THC and CBD or CBG for a relaxing or focused high. MSRP $ 7.00 ( Jefferies) per pack MSRP $ 10.00 (Bearly Legal) per pack *We do not guarantee clean drug test results while using any products sold by Thee Hemp Co. regardless of ingredients.

Jeffrey's Cigarettes contain no nicotine and no THC, making them a great option for those looking to quit smoking or concerned about the reults of a drug test*. Jeffrey's uses broad spectrum CBD hemp flower and unbleached paper for a more mindful consumer. Bearly Legal cigarettes contain a blend of Delta 8 THC and CBD or CBG for a relaxing or focused high. MSRP $ 7.00 ( Jefferies) per pack MSRP $ 10.00 (Bearly Legal) per pack *We do not guarantee clean drug test results while using any products sold by Thee Hemp Co. regardless of ingredients.

More Products

More Products

3.5g 20th Century Series 3500mg Blended Disposables WS

Kream Tablets

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Rip n Sip CBD Box

10g Disposable Live Rosin WS

Elephant Tranquilizer 20 Count Tapioca

Ass Kicker 20 Count Tapioca Cubes

1:5 THC / CBD Live Rosin Tapioca Cube

Load More

Load More

Load More

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