Impact Builders
Impact Builders
Le programme d'accélération pour les entrepreneurs à impact
Le programme d'accélération pour les entrepreneurs à impact
Tu es un entrepreneur à impact ?

VivaTech, Diversidays et L’Escalator accompagnent 10 entrepreneurs dans la quatrième saison de notre programme d'accélération business : IMPACT BUILDERS  

Impact Builders, c’est 4 mois d’accompagnement intensif pour faire grandir ton projet, ainsi qu’un programme dédié pendant VivaTech, spécialement imaginé pour les 10 ans.  

INSCRIS-TOI MAINTENANT 🚀 

Compressed image
Compressed image
Les partenaires du projet

Diversidays est une association nationale d'égalité des chances qui œuvre pour faire du numérique le nouvel ascenseur social. Co-fondée en 2017 par Mounira Hamdi et Anthony Babkine, l'association, reconnue d'intérêt général, a accompagné plus de 15 000 personnes vers les métiers et les carrières de demain. 

L’Escalator n’est pas un incubateur comme les autres. Destiné pour tous les porteurs de projets qui ont une énorme envie d’entreprendre mais qui manquent de formations, de connexion et de soutien financier. 

Critères d'éligibilité
  • La maîtrise du français 

  • Être disponible pour le programme :
    - Le 18 mars pour la masterclass de lancement
    - Les 14 & 15 avril pour le coaching
    - Le 20 mai pour un meet up avec les alumni

  • Assurer une présence pendant VivaTech 2026 du 17 au 20 juin 

Compressed image
Critères de sélection
Startup à impact

Une startup à impact est une jeune entreprise innovante qui utilise la technologie et le numérique pour générer, au cœur de son modèle, un impact social et/ou environnemental positif et mesurable. 

Scalabilité du projet

Démonstration d’un modèle économique soutenable qui permet de pérenniser et amplifier son impact positif

Innovation

Capacité de la startup à s’inscrire dans une démarche innovante

Dotations
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Calendrier

00:00:00:00

left to apply

left to apply

Retour sur la promotion 2025
To embed a Youtube video, add the URL to the properties panel.
******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/