--- import BaseLayout from './BaseLayout.astro'; import SiteFooter from '../components/SiteFooter.astro'; interface Props { title: string; description?: string; heading: string; /** Sottotitolo opzionale sotto l’H1 */ lead?: string; /** * Stili `@media print` (sfondo chiaro, moduli footer ridotti, modali nascosti). * Imposta `false` se la pagina non deve attivare il foglio stampa dedicato. */ printFriendly?: boolean; } const { title, description = 'NexStudio — software e IA per settori regolamentati.', heading, lead, printFriendly = true, } = Astro.props; const printDate = new Intl.DateTimeFormat('it-IT', { dateStyle: 'long', }).format(new Date()); const printSource = Astro.url.href; ---
{ printFriendly ? ( ) : null }

{heading}

{ lead && (

{lead}

) }