feat: tag contenuti training, contact e 404

This commit is contained in:
2026-07-05 17:04:17 +02:00
parent 31354c4457
commit bf38fc865c
5 changed files with 62 additions and 27 deletions
+7 -5
View File
@@ -1,14 +1,16 @@
---
import Base from '../layouts/Base.astro';
import T from '../components/content/T.astro';
import { t } from '../lib/content';
export const prerender = true;
---
<Base title="Pagina non trovata">
<Base title={t('notfound.meta.title')}>
<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>
<T tag="notfound.eyebrow" as="p" class="eyebrow" />
<T tag="notfound.title" as="h1" />
<T tag="notfound.body" as="p" />
<a class="btn" href="/">{t('notfound.cta')}</a>
</div>
</section>
</Base>