import { Show } from "solid-js"; import { usePageContext } from "vike-solid/usePageContext"; export default function Page() { const { is404 } = usePageContext(); return (

500 Internal Server Error

Something went wrong.

} >

404 Page Not Found

This page could not be found.

); }