feat: layout base con header, footer e 404

This commit is contained in:
2026-07-02 00:48:14 +02:00
parent ac75720bd9
commit 2fdd1b9a7f
6 changed files with 187 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
---
import Base from '../layouts/Base.astro';
export const prerender = true;
---
<Base title="Pagina non trovata">
<section class="section" style="text-align:center; padding-block:140px;">
<div class="container">
<p class="eyebrow">Errore 404</p>
<h1>Pagina non trovata</h1>
<p>La pagina che cerchi non esiste o è stata spostata.</p>
<a class="btn" href="/">Torna alla home</a>
</div>
</section>
</Base>
+4 -2
View File
@@ -1,5 +1,7 @@
---
import Base from '../layouts/Base.astro';
export const prerender = true;
---
<html lang="it"><head><title>InsanityLab</title></head>
<body><h1>InsanityLab — in costruzione</h1></body></html>
<Base title="Performance. Balance. Longevity.">
<section class="section"><div class="container"><h1>Homepage in costruzione</h1></div></section>
</Base>