Fork of Chiri for Astro for my blog
1---
2import { themeConfig } from '@/config'
3import IndexLayout from '@/layouts/IndexLayout.astro'
4---
5
6<IndexLayout title={`404 - ${themeConfig.site.title}`} description="Not Found">
7 <style>
8 .error-container {
9 color: var(--text-secondary);
10 }
11 </style>
12 <p class="error-container">Page Not Found...</p>
13</IndexLayout>