'use client'; import React from 'react'; import { useTranslations } from 'next-intl'; import { ProfileForm } from './ProfileForm'; import type { CabinetStats } from '../../lib/types'; interface ProfileSectionProps { stats: CabinetStats; } export const ProfileSection: React.FC = ({ stats }) => { const t = useTranslations('Cabinet'); console.log(stats); return (

{t('profile')}

{t('profileDesc')}

{/* */}
); };