"use client"; import Link from "next/link"; import { motion } from "framer-motion"; export default function ErrorPage({ error, reset, }: { error: Error & { digest?: string }; reset: () => void; }) { return (

FAQ Unavailable

We couldn't load the FAQ page. Please try again.

{process.env.NODE_ENV === "development" && (

Error Details

{error.message}

)}
Back to Homepage
); }