import { Button } from '@/components/ui/button' import { useTranslations } from 'next-intl' import Link from 'next/link' export default function NotFound() { const t = useTranslations('Groups.NotFound') return (

{t('text')}

) }