Miracle Leaf Hemp’s Arnica Balm is a powerful new option for taking the benefits of CBD cream on-the-go. Made of ingredients derived from organic, industrial hemp, this roll-on formula contains menthol, arnica and natural CBD hemp oil to ensure fast acting results. Apply Arnica Balm cream onto affected areas, where muscles are sore or there is joint discomfort, and feel the soothing effects of all natural, CBD hemp oil. CBD Arnica Balm is a great option for sports related stiffness and soreness, especially pre and post-workout. It may also be helpful for those suffering from a whole host of other common issues.
// 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();
}