b1fac24e19
- Font: display=swap, range pesi ridotti, rimosso preload fragile - Rimossa libreria Font Awesome (sostituita con SVG inline) - Aggiunte dimensioni esplicitate width/height su immagini per CLS - Aggiunto preconnect per Leaflet map tiles
28 lines
890 B
HTML
28 lines
890 B
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- Preconnect per ridurre latenza su connessioni esterne -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link rel="preconnect" href="https://cdnjs.cloudflare.com" />
|
|
|
|
<!-- Fonts con display=swap per evitare FOIT -->
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,700;1,400&family=Manrope:wght@400;500;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@24,400,0&display=block"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|