import { h, PageHeader, definePage } from '/static/hoover/index.js?v=6'; export default definePage({ init() { return { path: '' }; }, subscribe: [], async load(state) { state.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), ), ]; }, });