Kratom Products

Kratom Products

Kratom Products

Kream Tablets

Kream Shots 7O

Kream Shots 7O+9

Kream Tablets + Pseudo

Kream Tablets + Pseudo + MIT

New Brew Seltzer

Zion Herb Powder

K-Life Capsules

K-Life Powder

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