diff --git a/src/components/Views/FourOuFour.tsx b/src/components/Views/FourOuFour.tsx index 44015b8b..218254e2 100644 --- a/src/components/Views/FourOuFour.tsx +++ b/src/components/Views/FourOuFour.tsx @@ -4,8 +4,14 @@ import { useLocalize } from '../../context/localize' import { Icon } from '../_shared/Icon' import styles from '../../styles/FourOuFour.module.scss' +import { openPage } from '@nanostores/router' +import { router } from '../../stores/router' export const FourOuFourView = (_props) => { + let queryInput: HTMLInputElement + const search = (_ev) => { + openPage(router, 'search', { q: queryInput.value }) + } const { t } = useLocalize() return (
@@ -29,9 +35,15 @@ export const FourOuFourView = (_props) => {

{t(`You've reached a non-existed page`)}

{t('Try to find another way')}:

-
+
- +