"use client"; import { Button } from "@/components/ui/button"; import { Heading } from "@/components/ui/heading"; import Link from "next/link"; export default function GlobalError(props: { error: Error; reset: () => void; }) { console.log(props.error); return (
Sorry, an error occured loading this page.

Please try again, or contact our customer support team if this issue persists.

); }