diff --git a/apps/edr-freight-web/backoffice/src/components/layout/FreightDashboardHeader.tsx b/apps/edr-freight-web/backoffice/src/components/layout/FreightDashboardHeader.tsx
index d0dd0d04d..cc8074850 100644
--- a/apps/edr-freight-web/backoffice/src/components/layout/FreightDashboardHeader.tsx
+++ b/apps/edr-freight-web/backoffice/src/components/layout/FreightDashboardHeader.tsx
@@ -2,6 +2,7 @@ import { type ReactNode, useEffect, useRef, useState } from "react";
import {
Bell,
ChevronDown,
+ FileSignature,
Languages,
LogOut,
MessageSquare,
@@ -209,6 +210,15 @@ const FreightDashboardHeader = ({
>
Profile
+
}
+ onClick={() => {
+ setIsUserMenuOpen(false);
+ navigate("/dashboard/profile#signature");
+ }}
+ >
+ My signature
+
}
color="red"
diff --git a/apps/edr-freight-web/backoffice/src/pages/dashboard/MyProfilePage.tsx b/apps/edr-freight-web/backoffice/src/pages/dashboard/MyProfilePage.tsx
index 018e3328b..baf548d92 100644
--- a/apps/edr-freight-web/backoffice/src/pages/dashboard/MyProfilePage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/dashboard/MyProfilePage.tsx
@@ -3,7 +3,9 @@ import { MySignatureCard } from "@/components/profile/MySignatureCard";
export default function MyProfilePage() {
return (
);
}