'use client'; import ProfileLayout from '@/components/profile/profile-layout'; import { useTranslation } from '@nice/i18n'; import { useSetPageInfo } from '@/components/providers/dashboard-provider'; export default function ProfilePage() { const { t } = useTranslation(); useSetPageInfo({ title: t('profile.title'), subtitle: '整合人员数据,形成统一管理的数据池' }) return (