LEARN MORE

LEARN MORE

LEARN MORE

LEARN MORE

Who is Thee Hemp Co?

Who is Thee Hemp Co?

Who is Thee Hemp Co?

Thee Hemp Co. is a leading provider of hemp-based wellness products, including CBD, THC, Kratom, Kava, and functional mushrooms. We prioritize quality, education, and transparency to bring you the best products for relaxation, focus, and overall well-being. Click the "About Us" link below to find out additional information about Thee Hemp Co.

Thee Hemp Co. is a leading provider of hemp-based wellness products, including CBD, THC, Kratom, Kava, and functional mushrooms. We prioritize quality, education, and transparency to bring you the best products for relaxation, focus, and overall well-being. Click the "About Us" link below to find out additional information about Thee Hemp Co.

Thee Hemp Co. is a leading provider of hemp-based wellness products, including CBD, THC, Kratom, Kava, and functional mushrooms. We prioritize quality, education, and transparency to bring you the best products for relaxation, focus, and overall well-being. Click the "About Us" link below to find out additional information about Thee Hemp Co.

FAQ (Frequently Asked Questions)

FAQ (Frequently Asked Questions)

FAQ (Frequently Asked Questions)

Here's a list of our top asked questions. If you can't find the answer to your question below, then please use our contact form and an associate will get back to you as soon as possible!

Here's a list of our top asked questions. If you can't find the answer to your question below, then please use our contact form and an associate will get back to you as soon as possible!

Here's a list of our top asked questions. If you can't find the answer to your question below, then please use our contact form and an associate will get back to you as soon as possible!

Where are your stores located?

Where are your stores located?

Where are your stores located?

Where are your stores located?

Are your products legal?

Are your products legal?

Are your products legal?

Are your products legal?

How do I know your products are safe?

How do I know your products are safe?

How do I know your products are safe?

How do I know your products are safe?

What is Kratom and Kava?

What is Kratom and Kava?

What is Kratom and Kava?

What is Kratom and Kava?

How do I contact your store?

How do I contact your store?

How do I contact your store?

How do I contact your store?

How does the rewards program work?

How does the rewards program work?

How does the rewards program work?

How does the rewards program work?

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