Skip to content

Commit

Permalink
add cartes.gouv.fr
Browse files Browse the repository at this point in the history
  • Loading branch information
BenoitSerrano committed Sep 27, 2024
1 parent 6f33d07 commit 2730d31
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/Pages/Services/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ type networkType = "internet" | "RIE";
type serviceType = {
title: string;
url: string;
description?: string;
description: string;
isOpenToPrivate?: boolean;
network: networkType;
};
Expand Down Expand Up @@ -176,6 +176,13 @@ const SERVICES_LIST: Array<serviceType> = [
"Répertorier les services de l'État partenaires de la démarches naOS",
network: "internet",
},
{
title:
"Le service public des cartes et données du territoire | cartes.gouv.fr",
url: "https://cartes.gouv.fr",
description: "Consulter, créer et partager des cartes et des géodonnées",
network: "internet",
},
];

export { SERVICES_LIST };

0 comments on commit 2730d31

Please sign in to comment.