import { useTranslations } from 'next-intl'; export function Person() { const t = useTranslations('Person'); return (
{t('hello')} {t('description')}
); }