webapp/src/pages/about/help.astro

15 lines
337 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
---
2022-09-23 18:27:05 +00:00
import Zine from '../../layouts/zine.astro'
import { Root } from '../../components/Root'
import { initRouter } from '../../stores/router'
const { pathname, search } = Astro.url
initRouter(pathname, search)
2022-09-09 11:53:35 +00:00
Astro.response.headers.set('Cache-Control', 's-maxage=1, stale-while-revalidate')
---
2022-09-23 18:27:05 +00:00
<Zine>
<Root client:load />
</Zine>