LAB RESULTS

LAB RESULTS

LAB RESULTS

LAB RESULTS

Want to see our Third-Party, DEA-certified lab results?

CHECK BACK SOON TO SEE OUR LAB RESULTS

Want to see our Third-Party, DEA-certified lab results?

CHECK BACK SOON TO SEE OUR LAB RESULTS

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