webapp/src/pages/404.astro

12 lines
270 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
---
2022-09-22 09:37:49 +00:00
// TODO: sync with client router
2022-09-09 11:53:35 +00:00
import About from '../layouts/about.astro'
2022-09-22 09:37:49 +00:00
import { FourOuFourView } from '../components/Views/FourOuFour'
2022-09-09 11:53:35 +00:00
Astro.response.headers.set('Cache-Control', 's-maxage=1, stale-while-revalidate')
---
<About>
2022-09-22 09:37:49 +00:00
<FourOuFourView />
2022-09-09 11:53:35 +00:00
</About>