"use client"; import { Button } from "@/components/atoms/button"; /** * Full-page fallback for root-level errors * Used when the entire application crashes */ export function GlobalErrorFallback() { return (

Something went wrong

An unexpected error occurred. Please refresh the page.

); } /** * Content area fallback - keeps nav/sidebar functional * Used for errors within the main content area */ export function PageErrorFallback() { return (

Something went wrong

This section encountered an error. Please try again.

); }