diff --git a/app/partials/Navigation.tsx b/app/partials/Navigation.tsx
index 96fd91e..026411e 100644
--- a/app/partials/Navigation.tsx
+++ b/app/partials/Navigation.tsx
@@ -34,20 +34,20 @@ function NavigationItem(props: NavigationItemProps) {
onClick={() => setIsOpened((prev) => !prev)}
type="button"
aria-label={`${isOpened() ? "Masquer" : "Afficher"} les sous-sections de ${props.section.title}`}
+ class="contents cursor-pointer"
>
- {isOpened() ? "Masquer" : "Afficher"}
-
{isOpened() ? (
) : (
)}
+
{isOpened() ? "Masquer" : "Afficher"}
{props.section.title}