Files
zellyy-finance/src/pages/ProfileManagement.tsx
gpt-engineer-app[bot] ca18031388 Refactor ProfileManagement page
Splits the ProfileManagement page into smaller components for better organization and maintainability. No functionality was changed.
2025-03-15 04:32:52 +00:00

20 lines
527 B
TypeScript

import React from 'react';
import ProfileHeader from '@/components/profile/ProfileHeader';
import ProfileForm from '@/components/profile/ProfileForm';
import PasswordChangeForm from '@/components/profile/PasswordChangeForm';
const ProfileManagement = () => {
return (
<div className="min-h-screen bg-neuro-background pb-24">
<div className="max-w-md mx-auto px-6">
<ProfileHeader />
<ProfileForm />
<PasswordChangeForm />
</div>
</div>
);
};
export default ProfileManagement;