diff --git a/website/src/components/unleash-academy/Banner.jsx b/website/src/components/unleash-academy/Banner.jsx index 7b4668cff4..99006ed821 100644 --- a/website/src/components/unleash-academy/Banner.jsx +++ b/website/src/components/unleash-academy/Banner.jsx @@ -14,12 +14,6 @@ const Component = () => {
  • Valuable certification
  • - - Get certified -
    diff --git a/website/src/components/unleash-academy/Links.jsx b/website/src/components/unleash-academy/Links.jsx index 391039a8ae..213b74e1bf 100644 --- a/website/src/components/unleash-academy/Links.jsx +++ b/website/src/components/unleash-academy/Links.jsx @@ -2,7 +2,7 @@ import React from 'react'; import Link from '@docusaurus/Link'; -const LinkBox = ({ level, header, description, link }) => { +const LinkBox = ({ level, header, description, link, academyLink }) => { return (
    {

    {header}

    {description}

    - - Start learning - +
    + + Start learning + +
    + + Get certified + +
    ); }; @@ -30,6 +40,7 @@ const links = [ description: 'For all roles working with Unleash - Developers, Product owners, Leaders', link: 'foundational', + academyLink: 'https://docs.google.com/forms/d/e/1FAIpQLSe5F9cuGlkkUgVOGZ8Ny6xtsaSRygfUCMR-cab0e_DRIMk5sw/viewform', }, { level: 'Advanced', @@ -37,6 +48,7 @@ const links = [ description: 'For Developers only, after Foundational content has been reviewed', link: 'advanced-for-devs', + academyLink: 'https://docs.google.com/forms/d/e/1FAIpQLSfvux6w80HTHg5SEHxir6vEp5dQxDVsyk_-F2IPKbBgH5faMg/viewform', }, { level: 'Advanced', @@ -44,6 +56,7 @@ const links = [ description: 'For DevOps, Platform leads and Admins only after Foundational content has been reviewed', link: 'managing-unleash-for-devops', + academyLink: 'https://docs.google.com/forms/d/e/1FAIpQLScS8yHuDs0xSsqmFs9W9ptBJUKDts7WSi9g_FoU2D-oK2W7Bg/viewform', }, ]; @@ -51,13 +64,14 @@ const Component = () => { return (