import React from 'react'; export { Page }; function Page({ is404 }: { is404: boolean }) { if (is404) { return ( <>

404 Page Not Found

This page could not be found.

); } else { return ( <>

500 Internal Server Error

Something went wrong.

); } }