From 5d1d263c7477b988eb80abd299b4d545db8b6571 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Mon, 27 Apr 2026 14:54:26 +0200 Subject: [PATCH] feat: add AccountSettingsPage composing shared account components --- ui/src/pages/AccountSettingsPage.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ui/src/pages/AccountSettingsPage.tsx diff --git a/ui/src/pages/AccountSettingsPage.tsx b/ui/src/pages/AccountSettingsPage.tsx new file mode 100644 index 0000000..e217a4a --- /dev/null +++ b/ui/src/pages/AccountSettingsPage.tsx @@ -0,0 +1,27 @@ +import { useNavigate } from 'react-router'; +import { ArrowLeft } from 'lucide-react'; +import { Button } from '@cameleer/design-system'; +import { ProfileSection } from '../components/account/ProfileSection'; +import { PasswordChangeSection } from '../components/account/PasswordChangeSection'; +import { MfaSection } from '../components/account/MfaSection'; +import { PasskeyNudgeBanner, PasskeySection } from '../components/account/PasskeySection'; + +export function AccountSettingsPage() { + const navigate = useNavigate(); + + return ( +