2025-07-28 07:50:50 +08:00
|
|
|
'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 (
|
2025-07-28 10:32:25 +08:00
|
|
|
<div className="flex flex-col h-full">
|
|
|
|
|
<ProfileLayout />
|
|
|
|
|
</div>
|
2025-07-28 07:50:50 +08:00
|
|
|
);
|
|
|
|
|
}
|