Files
edr-platform/apps/edr-freight-web/backoffice/src/pages/dashboard/MyProfilePage.tsx
2026-08-12 12:28:37 +00:00

16 lines
478 B
TypeScript

import { MySignatureCard } from "@/components/profile/MySignatureCard";
import { ChangePasswordCard } from "@/components/profile/ChangePasswordCard";
import { ChangeEmailCard } from "@/components/profile/ChangeEmailCard";
export default function MyProfilePage() {
return (
<div className="mx-auto w-full max-w-2xl space-y-6 p-4">
<ChangeEmailCard />
<ChangePasswordCard />
<div id="signature">
<MySignatureCard />
</div>
</div>
);
}