function redirectToLinks() {
// Step 1: Redirect to the first link
window.location.href = 'https://dewhitecanvas.com/shop/?add-to-cart=8277';
// Step 2: Wait for 1 second using setTimeout
setTimeout(function() {
// Step 3: Redirect to the second link after 1 second
window.location.href = 'https://dewhitecanvas.com/checkout';
}, 1000);
}