import Layout from '@/components/ui/Layout'; import { NextPage } from 'next'; import Head from 'next/head'; const ServerErrorPage: NextPage = () => { return ( 500 Internal Server Error

Error: 500

Internal Server Error

); }; export default ServerErrorPage;