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

404 Page Not Found

This page could not be found.

); } return ( <>

500 Internal Server Error

Something went wrong.

); }