diff --git a/src/assets/images/recommendations/antoine-wolff.png b/src/assets/images/recommendations/antoine-wolff.png new file mode 100644 index 0000000..244323c Binary files /dev/null and b/src/assets/images/recommendations/antoine-wolff.png differ diff --git a/src/assets/images/recommendations/bouchra-ghaoui.jpg b/src/assets/images/recommendations/bouchra-ghaoui.jpg new file mode 100644 index 0000000..2806755 Binary files /dev/null and b/src/assets/images/recommendations/bouchra-ghaoui.jpg differ diff --git a/src/assets/images/recommendations/daniel-gall.jpg b/src/assets/images/recommendations/daniel-gall.jpg new file mode 100644 index 0000000..d208d6c Binary files /dev/null and b/src/assets/images/recommendations/daniel-gall.jpg differ diff --git a/src/assets/images/recommendations/gregoire-lacoste.jpg b/src/assets/images/recommendations/gregoire-lacoste.jpg new file mode 100644 index 0000000..df962ca Binary files /dev/null and b/src/assets/images/recommendations/gregoire-lacoste.jpg differ diff --git a/src/assets/images/recommendations/guillaume-gendrillon.webp b/src/assets/images/recommendations/guillaume-gendrillon.webp new file mode 100644 index 0000000..d35aa06 Binary files /dev/null and b/src/assets/images/recommendations/guillaume-gendrillon.webp differ diff --git a/src/assets/images/recommendations/john-samson.png b/src/assets/images/recommendations/john-samson.png new file mode 100644 index 0000000..c985024 Binary files /dev/null and b/src/assets/images/recommendations/john-samson.png differ diff --git a/src/assets/images/recommendations/olivier-cornudet.jpg b/src/assets/images/recommendations/olivier-cornudet.jpg new file mode 100644 index 0000000..fd98b39 Binary files /dev/null and b/src/assets/images/recommendations/olivier-cornudet.jpg differ diff --git a/src/assets/images/recommendations/thomas-kientz.jpg b/src/assets/images/recommendations/thomas-kientz.jpg new file mode 100644 index 0000000..a33b692 Binary files /dev/null and b/src/assets/images/recommendations/thomas-kientz.jpg differ diff --git a/src/assets/images/recommendations/thomas-morellato.webp b/src/assets/images/recommendations/thomas-morellato.webp new file mode 100644 index 0000000..9b5e504 Binary files /dev/null and b/src/assets/images/recommendations/thomas-morellato.webp differ diff --git a/src/assets/images/recommendations/vadim-toropoff.jpg b/src/assets/images/recommendations/vadim-toropoff.jpg new file mode 100644 index 0000000..2c78f0c Binary files /dev/null and b/src/assets/images/recommendations/vadim-toropoff.jpg differ diff --git a/src/assets/images/recommendations/vanessa-boissard.jpg b/src/assets/images/recommendations/vanessa-boissard.jpg new file mode 100644 index 0000000..b11a4ea Binary files /dev/null and b/src/assets/images/recommendations/vanessa-boissard.jpg differ diff --git a/src/components/code/FeaturedRecommendation.astro b/src/components/code/FeaturedRecommendation.astro index 7390697..301a888 100644 --- a/src/components/code/FeaturedRecommendation.astro +++ b/src/components/code/FeaturedRecommendation.astro @@ -10,7 +10,7 @@ const avatarImages = import.meta.glob<{ default: ImageMetadata }>( interface Props { author: string; authorRole: string; - company: string; + company?: string; text: string; avatar?: string; url?: string; diff --git a/src/components/code/RecommendationCard.astro b/src/components/code/RecommendationCard.astro index b7b9647..4d8f72c 100644 --- a/src/components/code/RecommendationCard.astro +++ b/src/components/code/RecommendationCard.astro @@ -10,7 +10,7 @@ const avatarImages = import.meta.glob<{ default: ImageMetadata }>( interface Props { author: string; authorRole: string; - company: string; + company?: string; text: string; date: Date; avatar?: string; diff --git a/src/content.config.ts b/src/content.config.ts index 61793c6..4d7dbf8 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -75,7 +75,7 @@ const recommendationsCollection = defineCollection({ schema: z.object({ author: z.string(), authorRole: z.string(), - company: z.string(), + company: z.string().optional(), avatar: z.string().optional(), url: z.string().url().optional(), date: z.date(), diff --git a/src/content/recommendations/bouchra-ghaoui.md b/src/content/recommendations/bouchra-ghaoui.md index 1d1b782..42ecf09 100644 --- a/src/content/recommendations/bouchra-ghaoui.md +++ b/src/content/recommendations/bouchra-ghaoui.md @@ -2,6 +2,7 @@ author: "Bouchra Ghaoui" authorRole: "Senior Engagement Manager" company: "Capgemini" +avatar: bouchra-ghaoui.jpg url: https://www.linkedin.com/in/bouchra-ghaoui-46509a10 date: 2011-12-09 lang: "fr" diff --git a/src/content/recommendations/john-samson.md b/src/content/recommendations/john-samson.md new file mode 100644 index 0000000..d399f10 --- /dev/null +++ b/src/content/recommendations/john-samson.md @@ -0,0 +1,10 @@ +--- +author: "John Samson" +authorRole: "Président" +company: "DisMoi SAS" +avatar: john-samson.png +url: https://www.malt.fr/profile/jalilarfaoui +date: 2022-06-17 +lang: "fr" +--- +Jalil a su trouver la bonne architecture à notre projet à 5 pattes, il est réactif en cas d'urgence, et s'engage au-delà de son rôle de développeur, très apprécié par les autres membres de l'équipe. diff --git a/src/content/recommendations/thomas-kientz.md b/src/content/recommendations/thomas-kientz.md new file mode 100644 index 0000000..0ff16b2 --- /dev/null +++ b/src/content/recommendations/thomas-kientz.md @@ -0,0 +1,9 @@ +--- +author: "Thomas Kientz" +authorRole: "Expert Vue.js | Nuxt" +avatar: thomas-kientz.jpg +url: https://www.malt.fr/profile/jalilarfaoui +date: 2022-06-17 +lang: "fr" +--- +Jalil est un développeur et mentor hors pair. Le développement logiciel est pour lui un art dont il adore partager sa passion. Je consulte Jalil régulièrement pour avoir son regard expérimenté tant le choix d'une nouvelle techno que pour des reviews de code. C'est un véritable atout à avoir dans son équipe, je le recommande fortement. diff --git a/src/content/recommendations/thomas-morellato.md b/src/content/recommendations/thomas-morellato.md new file mode 100644 index 0000000..48cdc8a --- /dev/null +++ b/src/content/recommendations/thomas-morellato.md @@ -0,0 +1,9 @@ +--- +author: "Thomas Morellato" +authorRole: "UI / UX designer" +avatar: thomas-morellato.webp +url: https://www.malt.fr/profile/jalilarfaoui +date: 2022-06-17 +lang: "fr" +--- +Jalil est un professionnel engagé et très compétent. Son relationnel et sa vision du projet en font un élément indispensable au sein d'une équipe. Je recommande vivement son profil. diff --git a/src/content/recommendations/vadim-toropoff.md b/src/content/recommendations/vadim-toropoff.md new file mode 100644 index 0000000..183d8f0 --- /dev/null +++ b/src/content/recommendations/vadim-toropoff.md @@ -0,0 +1,11 @@ +--- +author: "Vadim Toropoff" +authorRole: "Dirigeant" +company: "Event Finder" +url: https://www.malt.fr/profile/jalilarfaoui +date: 2015-10-08 +lang: "fr" +--- +Jalil nous a apporté conseil et expertise pour le lancement de tous nos projets technos pour notre agence événementielle. Il a réussi à comprendre et à mettre en place des systèmes complexes et surtout sur mesure. + +Patient, à l'écoute, je conseille les yeux fermés de travailler avec lui. diff --git a/src/content/recommendations/vanessa-boissard.md b/src/content/recommendations/vanessa-boissard.md index 3983b82..51e517e 100644 --- a/src/content/recommendations/vanessa-boissard.md +++ b/src/content/recommendations/vanessa-boissard.md @@ -2,6 +2,7 @@ author: "Vanessa Boissard" authorRole: "Psychologue sociale" company: "AlterAlliance" +avatar: vanessa-boissard.jpg url: https://www.linkedin.com/in/vanessaboissard date: 2011-12-05 lang: "fr"