mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 19:28:17 +00:00
16 lines
478 B
TypeScript
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>
|
|
);
|
|
}
|