import { NextPage } from 'next';
import Head from 'next/head';
const ServerErrorPage: NextPage = () => {
return (
<>
500 Internal Server Error
500: Something Went Wrong
Please try again later or contact us if the problem persists.
>
);
};
export default ServerErrorPage;