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 ( +
+
+ +

Account Settings

+
+ + + + + +
+ ); +}