2023-03-24 18:55:20 +01:00
|
|
|
import AppLayout from 'components/layout/AppLayout';
|
2023-03-24 00:33:10 +01:00
|
|
|
import SettingsLayout from 'components/layout/SettingsLayout';
|
2023-01-10 08:59:26 +01:00
|
|
|
import ProfileSettings from 'components/pages/settings/profile/ProfileSettings';
|
2023-04-21 04:58:16 +02:00
|
|
|
import useMessages from 'hooks/useMessages';
|
2023-01-10 08:59:26 +01:00
|
|
|
|
|
|
|
export default function ProfilePage() {
|
2023-04-21 04:58:16 +02:00
|
|
|
const { formatMessage, labels } = useMessages();
|
2023-01-10 08:59:26 +01:00
|
|
|
return (
|
2023-04-22 00:14:30 +02:00
|
|
|
<AppLayout title={`${formatMessage(labels.settings)} - ${formatMessage(labels.profile)}`}>
|
2023-03-24 18:55:20 +01:00
|
|
|
<SettingsLayout>
|
|
|
|
<ProfileSettings />
|
|
|
|
</SettingsLayout>
|
|
|
|
</AppLayout>
|
2023-01-10 08:59:26 +01:00
|
|
|
);
|
|
|
|
}
|