'use client' import { AlertTriangle, RefreshCcw } from 'lucide-react' import { useRouter } from 'next/navigation' import React from 'react' function ErrorUI() { const router = useRouter() function reloadPage() { router.refresh() window.location.reload() } return (

Something went wrong

) } export default ErrorUI