Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h2 class="text-primary pt-5 mb-5">
<h2 class="h5">Quel est l’intérêt de Vite Ma Dose de Vaccin&nbsp;?</h2>
<p>
Vite Ma Dose est une plateforme qui permet de trouver un rendez-vous de vaccination rapidement dans son département. Sont actuellement recensés les créneaux de vaccination des plateformes de santé
Doctolib, Keldoc, Maiia, Ordoclic, MaPharma et AvecMonDoc. La réservation d’un créneau d’injection de vaccin dans un centre de vaccination s’effectue via les pages de ces plateformes de santé.
Doctolib, Keldoc, Maiia, Ordoclic, MaPharma, AvecMonDoc et Clikodoc. La réservation d’un créneau d’injection de vaccin dans un centre de vaccination s’effectue via les pages de ces plateformes de santé.
</p>

<hr />
Expand Down
Binary file added public/assets/images/png/logo_clikodoc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/state/State.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const VMD_BASE_URL = USE_RAW_GITHUB
: "https://vitemadose.gitlab.io/vitemadose"


export type TypePlateforme = "Doctolib"|"Maiia"|"Ordoclic"|"Keldoc"|"Pandalab"|"Mapharma"|"AvecMonDoc";
export type TypePlateforme = "Doctolib"|"Maiia"|"Ordoclic"|"Keldoc"|"Pandalab"|"Mapharma"|"AvecMonDoc"|"Clikodoc";
export type Plateforme = {
// Should be the same than PLATEFORMES' key
code: TypePlateforme;
Expand All @@ -81,6 +81,7 @@ export const PLATEFORMES: Record<TypePlateforme, Plateforme> = {
'Pandalab': { code: 'Pandalab', logo: 'logo_pandalab.png', nom: 'Pandalab', promoted: false, website: 'https://masante.pandalab.eu/welcome', styleCode: '_pandalab'},
'Mapharma': { code: 'Mapharma', logo: 'logo_mapharma.png', nom: 'Mapharma', promoted: true, website: 'https://mapharma.net/login', styleCode: '_mapharma'},
'AvecMonDoc': { code: 'AvecMonDoc', logo: 'logo_avecmondoc.png', nom: 'AvecMonDoc', promoted: true, website: 'https://www.avecmondoc.com/', styleCode: '_avecmondoc'},
'Clikodoc': { code: 'Clikodoc', logo: 'logo_clikodoc.png', nom: 'Clikodoc', promoted: false, website: 'https://www.clikodoc.com/', styleCode: '_clikodoc'},
// Beware: if you add a new plateform, don't forget to update 'hardcoded' (indexable) content
// in index.html page, referencing the list of supported plateforms
};
Expand Down
3 changes: 3 additions & 0 deletions src/views/vmd-home.view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,8 @@
&._avecmondoc {
max-height: 4rem;
}
&._clikodoc {
max-height: 3.2rem;
}
}
}