import { useEffect } from 'react'; import { useLanguage } from '../contexts/LanguageContext'; export default function PrivacyPolicy() { const { texts: allTexts } = useLanguage(); const texts = allTexts.privacyPolicy; useEffect(() => { // Prevent indexing of this page const metaRobots = document.createElement('meta'); metaRobots.name = 'robots'; metaRobots.content = 'noindex, nofollow'; document.head.appendChild(metaRobots); // Cleanup on unmount return () => { const existingMeta = document.querySelector('meta[name="robots"]'); if (existingMeta) { existingMeta.remove(); } }; }, []); return (

{texts.title}

{texts.lastUpdated}

{texts.introTitle}

{texts.introText}

{texts.dataCollectionTitle}

{texts.dataCollectionText}

{texts.webhostingTitle}

{texts.webhostingText}

{texts.webhostingProvider}
{texts.webhostingProviderName}
{texts.webhostingProviderAddress}
{texts.webhostingProviderWebsite}

{texts.rightsTitle}

{texts.rightsText}

{texts.contactTitle}

{texts.contactText}

Email: {texts.contactEmail}

); }