12 lines
270 B
Plaintext
12 lines
270 B
Plaintext
---
|
|
// TODO: sync with client router
|
|
import About from '../layouts/about.astro'
|
|
import { FourOuFourView } from '../components/Views/FourOuFour'
|
|
|
|
Astro.response.headers.set('Cache-Control', 's-maxage=1, stale-while-revalidate')
|
|
---
|
|
|
|
<About>
|
|
<FourOuFourView />
|
|
</About>
|