bravo68web-portfolio-nextjs/components/500Page.jsx

23 lines
501 B
React
Raw Permalink Normal View History

2022-05-02 13:43:41 +00:00
import { Page500Style } from "./500Page.style";
2023-04-24 07:36:21 +00:00
function Page500(error = null) {
2023-06-12 08:03:13 +00:00
return (
<Page500Style>
<div className="container">
<img src="/images/500-cone.png" />
2022-05-02 13:43:41 +00:00
2023-06-12 08:03:13 +00:00
<h1>
<span>500</span> <br />
Internal server error
</h1>
<p className="info">{JSON.stringify(error)}</p>
<br />
<p>I might be currently trying to fix the problem.</p>
<p className="info">Maybe try again in a few minutes ...</p>
</div>
</Page500Style>
);
2022-05-02 13:43:41 +00:00
}
export default Page500;