diff --git a/src/pages/500.tsx b/src/pages/500.tsx new file mode 100644 index 00000000..9c224123 --- /dev/null +++ b/src/pages/500.tsx @@ -0,0 +1,44 @@ +import { SignInButton } from '@/components/auth'; +import { VerticalForm } from '@/components/common'; +import Cat404 from '@/public/assets/graphics/cat404.png'; +import styles from '@/styles/pages/404.module.scss'; +import Image from 'next/image'; + +const InternalServerError = () => { + return ( +
+ +

Something has gone terribly wrong

+ Sad Cat + + Logging out will usually fix your issue. + + + + If that doesn't work, file a bug to us on our project issue's page  + + here + + . + +
+
+ ); +}; + +export default InternalServerError;