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