ManpowerGroup
ManpowerGroup
AI, Tech, & #huManpower: Redefining the Future of Work
AI, Tech, & #huManpower: Redefining the Future of Work
Why this Challenge?

Helping people find their next great job and build successful careers starts with ensuring they have a great experience; from applying to a role to completing their assignment to finding the next perfect fit.

ManpowerGroup is transforming this journey through AI-powered matching and tech solutions to put people first. We're seeking innovative ways to reimagine the hiring process and help people build long-term careers. Join us in unleashing #huManpower so everyone can reach their full potential.

The Startup Challenge
AI, Tech, & #huManpower: Redefining the Future of Work

Context / Need:
#1: AI-Powered Marketing + #huManpower = The Perfect Job Match . Use AI-driven digital marketing to create emotional connections and match people with the right job.
#2: Personalizing the Job Journey with Tech-Driven Solutions . Build a tech-driven, personalized journey from job search to assignment completion and beyond.
#3: AI-Driven Redeployment for Faster, Smarter Hiring . Leverage AI to redeploy loyal associates faster, improving efficiency and reducing hiring time/cost.

Expected Solutions:
#1: Seeking AI-driven digital marketing solutions that build emotional connections with job seekers. Blending data, creativity, and automation to deliver personalized job recommendations and drive meaningful engagement.
#2: Looking for end-to-end tech solutions that personalize the journey—from search to assignment completion and beyond. Enhancing job discovery, application, screening, onboarding, and engagement, ensuring a seamless and positive experience for job seekers and associates.
#3: Interest in AI-powered tools that optimize redeployment by identifying and reassigning associates efficiently, ensuring continuous employment opportunities.

Scope:
AI, Tech, Digital Marketing, Candidate Experience, Redeployment, LLM, Job Journey, #huManpower

AI, Tech, & #huManpower: Redefining the Future of Work

Context / Need:
#1: AI-Powered Marketing + #huManpower = The Perfect Job Match . Use AI-driven digital marketing to create emotional connections and match people with the right job.
#2: Personalizing the Job Journey with Tech-Driven Solutions . Build a tech-driven, personalized journey from job search to assignment completion and beyond.
#3: AI-Driven Redeployment for Faster, Smarter Hiring . Leverage AI to redeploy loyal associates faster, improving efficiency and reducing hiring time/cost.

Expected Solutions:
#1: Seeking AI-driven digital marketing solutions that build emotional connections with job seekers. Blending data, creativity, and automation to deliver personalized job recommendations and drive meaningful engagement.
#2: Looking for end-to-end tech solutions that personalize the journey—from search to assignment completion and beyond. Enhancing job discovery, application, screening, onboarding, and engagement, ensuring a seamless and positive experience for job seekers and associates.
#3: Interest in AI-powered tools that optimize redeployment by identifying and reassigning associates efficiently, ensuring continuous employment opportunities.

Scope:
AI, Tech, Digital Marketing, Candidate Experience, Redeployment, LLM, Job Journey, #huManpower

AI, Tech, & #huManpower: Redefining the Future of Work

Context / Need:
#1: AI-Powered Marketing + #huManpower = The Perfect Job Match . Use AI-driven digital marketing to create emotional connections and match people with the right job.
#2: Personalizing the Job Journey with Tech-Driven Solutions . Build a tech-driven, personalized journey from job search to assignment completion and beyond.
#3: AI-Driven Redeployment for Faster, Smarter Hiring . Leverage AI to redeploy loyal associates faster, improving efficiency and reducing hiring time/cost.

Expected Solutions:
#1: Seeking AI-driven digital marketing solutions that build emotional connections with job seekers. Blending data, creativity, and automation to deliver personalized job recommendations and drive meaningful engagement.
#2: Looking for end-to-end tech solutions that personalize the journey—from search to assignment completion and beyond. Enhancing job discovery, application, screening, onboarding, and engagement, ensuring a seamless and positive experience for job seekers and associates.
#3: Interest in AI-powered tools that optimize redeployment by identifying and reassigning associates efficiently, ensuring continuous employment opportunities.

Scope:
AI, Tech, Digital Marketing, Candidate Experience, Redeployment, LLM, Job Journey, #huManpower

Selection Criteria
Value proposition

for redefining the Future of Work

Innovation and originality

Your solution is relevant, original and innovative

Scalability

Your solution has high potential in terms of scalability

Team Profile

Your team comprises of passionate people

Traction and market fit

Your business model demonstrates traction and market fit

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