9 lines
270 B
Plaintext
9 lines
270 B
Plaintext
---
|
|
import Base from '../layouts/Base.astro';
|
|
import PageHero from '../components/PageHero.astro';
|
|
---
|
|
<Base title="Page not found">
|
|
<PageHero title="Page not found" />
|
|
<div class="container prose prose--no-image"><p><a href="/">Return to Home</a></p></div>
|
|
</Base>
|