17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
---
|
|
import Base from '../layouts/Base.astro';
|
|
import T from '../components/content/T.astro';
|
|
import { t } from '../lib/content';
|
|
export const prerender = false;
|
|
---
|
|
<Base title={t('notfound.meta.title')}>
|
|
<section class="section" style="text-align:center; padding-block:140px;">
|
|
<div class="container">
|
|
<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>
|