Implement content generation

This commit is contained in:
2026-03-07 11:18:05 +03:00
parent 4b04afb912
commit 22866db191
8 changed files with 102 additions and 8 deletions

8
src/pages/404.astro Normal file
View File

@@ -0,0 +1,8 @@
---
import InternalLayout from '../layouts/InternalLayout.astro';
---
<InternalLayout title="Страница не найдена" description="Страница не найдена">
<h1 class="text-4xl font-bold mt-3 mb-4">404</h1>
<p>Ой, страница не найдена.</p>
<p>Давайте посмотрим, что интересное есть на <a href="/">главной</a>.</p>
</InternalLayout>