import wixLocation from 'wix-location';
import wixData from 'wix-data';
$w.onReady(function () {
$w('#shopButton').onClick(() => {
wixLocation.to('/books');
});
$w('#schoolButton').onClick(() => {
wixLocation.to('/school-packages');
});
$w('#signupButton').onClick(() => {
const email = $w('#emailInput').value;
if (!email || !email.includes('@')) {
$w('#signupMessage').text = 'Please enter a valid email address.';
$w('#signupMessage').show();
return;
}
wixData.insert('EmailSubscribers', {
email: email,
source: 'Homepage Signup',
dateJoined: new Date()
})
.then(() => {
$w('#signupMessage').text = 'You’re in! Welcome to the DUH BRUH Club.';
$w('#signupMessage').show();
$w('#emailInput').value = '';
})
.catch(() => {
$w('#signupMessage').text = 'Something went wrong. Please try again.';
$w('#signupMessage').show();
});
});
});
top of page
bottom of page