Discover the perfect blend of relaxation and indulgence with our new CBD Infused Square Gummies. Crafted with precision, each gummy delivers a consistent dose of premium CBD extract, ensuring a blissful experience every time. Experience the soothing effects of CBD without any psychoactive effects, and enjoy the fruity flavors with ease. Elevate your wellness routine with our CBD Infused Square Gummies today.
50mg Per Serving
Includes: 50mg of CBD Isolate
Farm Bill Compliant and Legal in Most States
Available in Blue Raspberry or Strawberry Mango
Must be 21 Years or Older to Purchase
SUGGESTED USE: One per serving. Once daily or as needed. KEEP OUT OF REACH OF CHILDREN. Do not use if pregnant, nursing or trying to conceive with a partner. Consult a doctor before use. WARNING: Do not drive or operate heavy machinery after consuming this product. May cause drowsiness. Do not combine with alcohol or medication. Use responsibly and follow Suggested Use guidelines.
// Function to show the age gate popup
function showAgeGate() {
// Create a div for the popup
const popup = document.createElement('div');
popup.id = 'ageGatePopup';
popup.style.cssText = `
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
`;
// Create the popup content
popup.innerHTML = `
Are you 18 years or older?
`;
// Add the popup to the page
document.body.appendChild(popup);
// Event listeners for the buttons
document.getElementById('yesButton').addEventListener('click', () => {
// Store a cookie or local storage value to remember the user's choice
localStorage.setItem('ageVerified', 'true');
document.body.removeChild(popup); // Close the popup
});
document.getElementById('noButton').addEventListener('click', () => {
// Redirect to another page or display a message
window.location.href = 'https://www.example.com/age-restricted'; // Example redirect
});
}
// Check if the user has already verified their age
if (localStorage.getItem('ageVerified') !== 'true') {
showAgeGate();
}