import { h, PageHeader, definePage } from '/static/hoover/index.js?v=7'; export default definePage({ init() { return { path: location.hash.slice(1) || '' }; }, render(state) { return [ PageHeader({ title: '404' }), h('div', { class: 'card' }, h('div', { class: 'card-body text-muted' }, 'Page not found: ' + state.path), ), ]; }, });