"🛍️ Store Notice: We're excited to enhance your shopping experience! Our store is currently undergoing updates to bring you even more incredible products. Stay tuned for the latest arrivals and exclusive offers. Thank you for your patience!" Dismiss
"Exploring Ideas, Enriching Lives – Your Journey Begins at SideAvenue: Where Blogging Meets Shopping!"
Portfolio
“Welcome to my portfolio! Here, I showcase a curated collection of my creative journey. From design concepts to completed projects, this space reflects my passion for crafting unique experiences. Join me on a visual exploration of my work and let’s bring ideas to life together.”
This website uses cookies to ensure you get the best experience. Learn more
const notification = document.querySelector('.cookie-notification');
const acceptButton = document.getElementById('accept-cookies');
const declineButton = document.getElementById('decline-cookies');
acceptButton.addEventListener('click', () => {
notification.style.display = 'none'; // Hide the notification
// You can also set a cookie here to remember user's preference
});
declineButton.addEventListener('click', () => {
notification.style.display = 'none'; // Hide the notification
// You might want to adjust your website behavior based on user's choice
});