9 lines
258 B
Plaintext
9 lines
258 B
Plaintext
---
|
|
import Hero from '../components/Hero.astro';
|
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
|
---
|
|
|
|
<BaseLayout title="Not Found" description="404 Error — this page was not found">
|
|
<Hero title="Page Not Found" tagline="Not found" />
|
|
</BaseLayout>
|