Fork of Chiri for Astro for my blog
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 334 B view raw
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>