import { usePageContext } from "vike-react/usePageContext"; export default function Page() { const { is404 } = usePageContext(); return (
{is404 ? "This page could not be found." : "Something went wrong."}