Riorganizza privacy/gdpr/terms con struttura dati dedicata, uniforma copy e stile delle sezioni principali, aggiorna card prodotto/servizi e migliora ordine e separatori del footer per una presentazione più coerente. Made-with: Cursor
75 lines
2.5 KiB
Plaintext
75 lines
2.5 KiB
Plaintext
---
|
|
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 modalita' di esercizio ai sensi del Regolamento (UE) 2016/679, in coerenza con l'informativa privacy quadro del portale NexStudio. " +
|
|
gdprCrossReferences.lead;
|
|
---
|
|
|
|
<SubpageLayout
|
|
title="GDPR — NexStudio"
|
|
description="Pagina GDPR NexStudio: diritti degli interessati, modalita' operative, ruoli tra portale corporate e SaaS LexAura/MediAura, coordinamento con privacy dedicate."
|
|
heading="GDPR e diritti degli interessati"
|
|
lead={lead}
|
|
>
|
|
<div>
|
|
<p class="border-l-2 border-sky-500/35 pl-4 text-sm leading-relaxed text-nx-muted">
|
|
<span class="font-medium text-nx-fg">Versione</span> {gdprDocument.version}
|
|
<span class="text-nx-muted/80"> · </span>
|
|
<span class="font-medium text-nx-fg">In vigore dal</span> {gdprDocument.inVigoreDal}
|
|
<span class="text-nx-muted/80"> · </span>
|
|
<span class="font-medium text-nx-fg">Ultimo aggiornamento</span> {gdprDocument.ultimoAggiornamento}
|
|
</p>
|
|
|
|
<p class="!mt-5 text-sm text-nx-muted sm:text-base">
|
|
Documenti connessi:{' '}
|
|
{
|
|
gdprRiferimenti.map((r, i) => (
|
|
<span>
|
|
{i > 0 && <span class="text-nx-muted/80"> · </span>}
|
|
<a class={link} href={r.href}>{r.label}</a>
|
|
</span>
|
|
))
|
|
}
|
|
</p>
|
|
|
|
<h2 id="indice" class="!mt-8">Indice</h2>
|
|
<ol class="!mt-3 list-decimal space-y-1.5 pl-5 text-sm leading-relaxed sm:text-base">
|
|
{
|
|
gdprSections.map((s) => (
|
|
<li>
|
|
<a class={link} href={`#${s.id}`}>{s.title}</a>
|
|
</li>
|
|
))
|
|
}
|
|
</ol>
|
|
|
|
{
|
|
gdprSections.map((s) => (
|
|
<section class="mt-10" id={s.id}>
|
|
<h2 class="scroll-mt-8 text-lg font-semibold text-nx-fg sm:text-xl">
|
|
{s.title}
|
|
</h2>
|
|
{s.paragraphs.map((p) => (
|
|
<p class="mt-3 text-sm leading-relaxed text-nx-muted sm:text-base">{p}</p>
|
|
))}
|
|
{s.bullets && s.bullets.length > 0 ? (
|
|
<ul class="mt-3 list-disc space-y-2 pl-5 text-sm sm:text-base">
|
|
{s.bullets.map((b) => (
|
|
<li class="text-nx-muted">{b}</li>
|
|
))}
|
|
</ul>
|
|
) : null}
|
|
</section>
|
|
))
|
|
}
|
|
</div>
|
|
</SubpageLayout>
|