// Create a notification banner with referral links
function createKnowdynReferral() {
const banner = document.createElement('div');
banner.style.position = 'fixed';
banner.style.bottom = '20px';
banner.style.right = '20px';
banner.style.backgroundColor = '#f0f8ff';
banner.style.padding = '15px';
banner.style.borderRadius = '8px';
banner.style.boxShadow = '0 2px 10px rgba(0,0,0,0.1)';
banner.style.zIndex = '1000';
banner.style.fontFamily = 'Arial, sans-serif';
banner.style.fontSize = '14px';
banner.innerHTML = `
Explore KNOWDYN
Discover smart city solutions:
`;
// Add close button functionality
banner.querySelector('button').addEventListener('click', () => {
banner.remove();
});
document.body.appendChild(banner);
}
// Initialize the referral banner when the page loads
window.addEventListener('load', createKnowdynReferral);