1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00

fix: linting website links (#10846)

This commit is contained in:
Mateusz Kwasniewski 2025-10-23 09:02:58 +02:00 committed by GitHub
parent e1d21adc9f
commit ffa602239d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,8 @@ const links = [
description: description:
'For all roles working with Unleash - Developers, Product owners, Leaders', 'For all roles working with Unleash - Developers, Product owners, Leaders',
link: 'foundational', link: 'foundational',
academyLink: 'https://docs.google.com/forms/d/e/1FAIpQLSe5F9cuGlkkUgVOGZ8Ny6xtsaSRygfUCMR-cab0e_DRIMk5sw/viewform', academyLink:
'https://docs.google.com/forms/d/e/1FAIpQLSe5F9cuGlkkUgVOGZ8Ny6xtsaSRygfUCMR-cab0e_DRIMk5sw/viewform',
}, },
{ {
level: 'Advanced', level: 'Advanced',
@ -48,7 +49,8 @@ const links = [
description: description:
'For Developers only, after Foundational content has been reviewed', 'For Developers only, after Foundational content has been reviewed',
link: 'advanced-for-devs', link: 'advanced-for-devs',
academyLink: 'https://docs.google.com/forms/d/e/1FAIpQLSfvux6w80HTHg5SEHxir6vEp5dQxDVsyk_-F2IPKbBgH5faMg/viewform', academyLink:
'https://docs.google.com/forms/d/e/1FAIpQLSfvux6w80HTHg5SEHxir6vEp5dQxDVsyk_-F2IPKbBgH5faMg/viewform',
}, },
{ {
level: 'Advanced', level: 'Advanced',
@ -56,7 +58,8 @@ const links = [
description: description:
'For DevOps, Platform leads and Admins only after Foundational content has been reviewed', 'For DevOps, Platform leads and Admins only after Foundational content has been reviewed',
link: 'managing-unleash-for-devops', link: 'managing-unleash-for-devops',
academyLink: 'https://docs.google.com/forms/d/e/1FAIpQLScS8yHuDs0xSsqmFs9W9ptBJUKDts7WSi9g_FoU2D-oK2W7Bg/viewform', academyLink:
'https://docs.google.com/forms/d/e/1FAIpQLScS8yHuDs0xSsqmFs9W9ptBJUKDts7WSi9g_FoU2D-oK2W7Bg/viewform',
}, },
]; ];
@ -64,17 +67,19 @@ const Component = () => {
return ( return (
<div className='unleash-academy-links-container'> <div className='unleash-academy-links-container'>
<ul className='unleash-academy-links'> <ul className='unleash-academy-links'>
{links.map(({ level, header, description, link, academyLink }) => ( {links.map(
<li key={header}> ({ level, header, description, link, academyLink }) => (
<LinkBox <li key={header}>
level={level} <LinkBox
header={header} level={level}
description={description} header={header}
link={link} description={description}
academyLink={academyLink} link={link}
/> academyLink={academyLink}
</li> />
))} </li>
),
)}
</ul> </ul>
</div> </div>
); );