diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index 8e17ae6..7c68a4d 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -21,11 +21,10 @@ export default function Navbar({ variant = "fixed" }: Props) {
const MiddleSection = () => {
const authenticatedLinks = (
<>
- Tableau de bord
+ Accueil
Profil
Carte
Statistiques
-
>
);
@@ -68,7 +67,8 @@ export default function Navbar({ variant = "fixed" }: Props) {
backdropFilter={"auto"}
backdropBlur={"20px"}
px={10}
- py={2}>
+ py={2}
+ >
diff --git a/src/components/graph/PieChart.tsx b/src/components/graph/PieChart.tsx
index 3f3c02f..142db0a 100644
--- a/src/components/graph/PieChart.tsx
+++ b/src/components/graph/PieChart.tsx
@@ -41,7 +41,7 @@ const PieChart = () => {
// Préparer les données pour le chart
const data = {
- labels: ["MALE", "FEMALE", "OTHER", "UNKNOWN"],
+ labels: ["Homme", "Femme", "Autre", "Inconnu"],
datasets: [
{
data: countGenders(),