diff --git a/app/missions/page.tsx b/app/missions/page.tsx index d7dd6554..4446a80c 100644 --- a/app/missions/page.tsx +++ b/app/missions/page.tsx @@ -210,8 +210,8 @@ export default function MissionsPage() { {/* Centered Logo */} -
-
+
+
{mission.logo ? ( ) : null}
{mission.name.slice(0, 2).toUpperCase()}
- {/* Card Content */} + {/* Card Content - Only Services section */}
-
-
- Type: - {getMissionTypeLabel(mission.missionType)} -
- -
- Durée: - {getDuration(mission.projection)} -
- -
- Participation: - {getParticipationLabel(mission.participation)} -
- - {mission.services && mission.services.length > 0 && ( -
- Services: -
- {mission.services.map(service => ( - - {service} - - ))} -
+ {mission.services && mission.services.length > 0 && ( +
+ Services: +
+ {mission.services.map(service => ( + + {service} + + ))}
- )} -
+
+ )} + + {/* ODD scope icon - moved here and enlarged */} + {oddInfo.number && ( +
+
+ {oddInfo.label} { + // Fallback if image fails to load + (e.target as HTMLImageElement).style.display = 'none'; + }} + /> +
+
+ )}
{/* Card Footer */} @@ -277,28 +277,11 @@ export default function MissionsPage() { Créée le {formatDate(mission.createdAt)} -
- {/* ODD scope icon */} - {oddInfo.number && ( -
- {oddInfo.label} { - // Fallback if image fails to load - (e.target as HTMLImageElement).style.display = 'none'; - }} - /> -
- )} - - - - -
+ + +
);