- Updated button variants (outline, ghost) to use text-white - Updated empty state descriptions to use text-white with opacity - Updated page subtitles to use text-white opacity-80 - Updated Navbar interactive elements to use text-white - Preserved text-kodo-secondary for truly secondary info (metadata, timestamps, helper text) - Action 11.1.1.2 complete
25 lines
692 B
TypeScript
25 lines
692 B
TypeScript
import { ProfileForm } from '@/features/user/components/ProfileForm';
|
|
import { Card } from '@veza/design-system';
|
|
|
|
/**
|
|
* Page de profil utilisateur avec édition et affichage des informations.
|
|
* MIGRATED: Now using Kōdō Design System
|
|
*/
|
|
export function ProfilePage() {
|
|
return (
|
|
<div className="p-4 sm:p-6">
|
|
<div className="mb-6">
|
|
<h1 className="text-3xl font-display font-bold text-white mb-2">
|
|
Mon Profil
|
|
</h1>
|
|
<p className="text-sm text-white opacity-80">
|
|
Gérez vos informations personnelles
|
|
</p>
|
|
</div>
|
|
|
|
<Card variant="default" className="max-w-4xl">
|
|
<ProfileForm />
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|