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

{is404 ? "Page Not Found" : "Internal Error"}

{is404 ? "This page could not be found." : "Something went wrong."}

); }