export { Page } function Page({ is404 }: { is404: boolean }) { if (is404) { return ( <>

404 Page Not Found

This page could not be found.

) } else { return ( <>

500 Internal Error

Something went wrong.

) } }