"use client"; import styles from "@/app/forbidden/forbidden.module.css"; import { EB_Garamond } from "next/font/google"; const ebGaramond = EB_Garamond({ variable: "--font-eb-garamond", weight: ["400", "500", "600", "700", "800"], subsets: ["latin"], }); export default function GlobalError({ error, reset }) { return (

500

Internal Server Error

Sorry, something went wrong. Please try again later.

); }