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

23 lines
550 B
React
Raw 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) {
2022-05-02 13:43:41 +00:00
return (
<Page500Style>
<div className="container">
2022-05-27 08:07:44 +00:00
<img src="/images/500-cone.png" />
2022-05-02 13:43:41 +00:00
2022-05-27 08:07:44 +00:00
<h1>
<span>500</span> <br />
Internal server error
</h1>
2023-04-24 07:36:21 +00:00
<p className="info">{JSON.stringify(error)}</p>
<br/>
2022-05-27 08:07:44 +00:00
<p>I might be currently trying to fix the problem.</p>
<p className="info">Maybe try again in a few minutes ...</p>
</div>
2022-05-02 13:43:41 +00:00
</Page500Style>
);
}
export default Page500;