mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Implement edit beer post functionality. Register, edit and create beer post forms are now using the same layout found in components/ui/forms/BeerPostFormPageLayout. All forms are now extracted into their own components and are now found in components. Added redirectIfLoggedIn getServerSidesProp fn for login and register pages.
21 lines
602 B
TypeScript
21 lines
602 B
TypeScript
import Layout from '@/components/ui/Layout';
|
|
import { NextPage } from 'next';
|
|
import Head from 'next/head';
|
|
|
|
const ServerErrorPage: NextPage = () => {
|
|
return (
|
|
<Layout>
|
|
<Head>
|
|
<title>500 Internal Server Error</title>
|
|
<meta name="description" content="500 Internal Server Error" />
|
|
</Head>
|
|
<div className="flex h-full flex-col items-center justify-center space-y-4">
|
|
<h1 className="text-7xl font-bold">Error: 500</h1>
|
|
<h2 className="text-xl font-bold">Internal Server Error</h2>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default ServerErrorPage;
|