--- import SubpageLayout from '../layouts/SubpageLayout.astro'; import { gdprCrossReferences, gdprDocument, gdprRiferimenti, gdprSections, } from '../data/gdpr'; const link = 'text-sky-400/90 underline-offset-2 hover:text-sky-300 hover:underline'; const lead = "Diritti degli interessati e modalità di esercizio ai sensi del Regolamento (UE) 2016/679, in coerenza con l'informativa privacy quadro di NexStudio S.r.l. (Italia, [INDIRIZZO_COMPLETO]). " + gdprCrossReferences.lead; ---

Versione {gdprDocument.version} · In vigore dal {gdprDocument.inVigoreDal} · Ultimo aggiornamento {gdprDocument.ultimoAggiornamento}

Documenti connessi:{' '} { gdprRiferimenti.map((r, i) => ( {i > 0 && · } {r.label} )) }

Indice

    { gdprSections.map((s) => (
  1. {s.title}
  2. )) }
{ gdprSections.map((s) => (

{s.title}

{s.paragraphs.map((p) => (

{p}

))} {s.bullets && s.bullets.length > 0 ? (
    {s.bullets.map((b) => (
  • {b}
  • ))}
) : null} {s.paragraphsAfterBullets?.map((p) => (

{p}

))}
)) }