'use client'; import { ArrowRightIcon } from '@heroicons/react/24/solid'; import { captureException } from '@sentry/nextjs'; import type { FC } from 'react'; import Button from '@/components/Common/Button'; import BaseLayout from '@/layouts/Base'; import CenteredLayout from '@/layouts/Centered'; const GlobalErrorPage: FC<{ error: Error }> = ({ error }) => { captureException(error); return (
500

Internal Server Error

This page has thrown a non-recoverable error.

); }; export default GlobalErrorPage;