China Pavillon
China Pavillon
Ignite tomorrow's innovation, today.
Ignite tomorrow's innovation, today.
Why this Challenge?

The China Pavilion at VivaTech will feature a diverse array of Chinese companies.Through the combination of online and offline communication, companies will be able to communicate, share, and cooperate without the restriction of national boundaries.

This will expand scientific and technological exchanges and business cooperation with France and the world, promoting the healthy and stable development of Sino-French economic and trade relations.

The Startup Challenge
Positive impact and societies

Context / Need:
The China's Pavilion highlights the virtues of dialogue and international exchanges in the development of technologies with global benefits. By focusing on innovation with a positive impact, we wish to encourage companies whose vision combines technology with human and environmental well-being.

Expected Solutions:
We are looking for start-ups that have developed technologies that can significantly transform or provide solutions to major challenges in key areas such as health, the environment, education and culture.
Each start-up participating in the competition must therefore reflect a strong commitment to responsible innovation and aim to provide solutions that are not only innovative but also beneficial on a global scale.
We focus on proposals that demonstrate a holistic approach with an ambition for international development.

Positive impact and societies

Context / Need:
The China's Pavilion highlights the virtues of dialogue and international exchanges in the development of technologies with global benefits. By focusing on innovation with a positive impact, we wish to encourage companies whose vision combines technology with human and environmental well-being.

Expected Solutions:
We are looking for start-ups that have developed technologies that can significantly transform or provide solutions to major challenges in key areas such as health, the environment, education and culture.
Each start-up participating in the competition must therefore reflect a strong commitment to responsible innovation and aim to provide solutions that are not only innovative but also beneficial on a global scale.
We focus on proposals that demonstrate a holistic approach with an ambition for international development.

Positive impact and societies

Context / Need:
The China's Pavilion highlights the virtues of dialogue and international exchanges in the development of technologies with global benefits. By focusing on innovation with a positive impact, we wish to encourage companies whose vision combines technology with human and environmental well-being.

Expected Solutions:
We are looking for start-ups that have developed technologies that can significantly transform or provide solutions to major challenges in key areas such as health, the environment, education and culture.
Each start-up participating in the competition must therefore reflect a strong commitment to responsible innovation and aim to provide solutions that are not only innovative but also beneficial on a global scale.
We focus on proposals that demonstrate a holistic approach with an ambition for international development.

Selection Criteria
Innovation and concept

Innovative and unique aspect of the solution compared with existing offerings in the target sector.

Objective

Clarity of the objectives and the potential impact of the solution on a local or global scale.

Technology

Effectiveness of the solution in meeting a need, generating significant positive change and its alignment with the major challenges in the field.

Economic viability and scalability

The soundness of the start-up's business model and its ability to develop on a larger scale.

Team skills and qualifications

The team's skills, experience and vision for the project.

Rewards
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

Timeline

00:00:00:00

left to apply

left to apply

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* 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 *******/