Splits the ProfileManagement page into smaller components for better organization and maintainability. No functionality was changed.
20 lines
527 B
TypeScript
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;
|