'use client' import {useTranslations} from 'next-intl' import React from 'react' import {Button} from '@/components/ui/button' export default function ErrorPage({ error, reset }: { error: Error reset: () => void }) { const t = useTranslations('Error') return (
{error.message}