'use client' import { useTranslations } from 'next-intl' export default function FilePageNotFound() { const t = useTranslations('Global'); return (
{t('file-not-found')}
) }