function shareContent() { if (navigator.share) { navigator.share({ title: "Fantacy Teacher", url: "https://zmaal.net/fantacy-teacher/" }) .catch(error => console.log('Error sharing:', error)); } else { // Fallback for browsers that don't support Web Share API prompt("Copy this link to share:", "https://zmaal.net/fantacy-teacher/"); } }