1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-01 13:47:27 +02:00

docs: link academy to internal doc sites

This commit is contained in:
Thomas Heartman 2024-01-31 12:19:00 +09:00
parent 9c87a2aaac
commit ab14d9110e
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -1,4 +1,5 @@
import React from 'react'; import React from 'react';
import Link from '@docusaurus/Link';
const LinkBox = ({ level, header, description, link }) => { const LinkBox = ({ level, header, description, link }) => {
return ( return (
@ -8,13 +9,13 @@ const LinkBox = ({ level, header, description, link }) => {
<h3>{header}</h3> <h3>{header}</h3>
</div> </div>
<p>{description}</p> <p>{description}</p>
<a <Link
className='unleash-action-button' className='unleash-action-button'
href={link} to={`/unleash-academy/${link}`}
title={`Course: ${header}`} title={header}
> >
Start learning Start learning
</a> </Link>
</article> </article>
); );
}; };
@ -25,21 +26,21 @@ const links = [
header: 'Foundational', header: 'Foundational',
description: description:
'For all roles working with Unleash - Developers, Product owners, Leaders', 'For all roles working with Unleash - Developers, Product owners, Leaders',
link: 'https://docs.google.com/forms/d/1iPUk2I0k5xMzicn9aLMcPF3b9ub3ZwdVjRxCxWxV7js/viewform', link: 'foundational',
}, },
{ {
level: 'Advanced', level: 'Advanced',
header: 'Advanced for Developers', header: 'Advanced for Developers',
description: description:
'For Developers only, after Foundational content has been reviewed', 'For Developers only, after Foundational content has been reviewed',
link: 'https://docs.google.com/forms/d/1NUL9hyO8Ys916TB6fPV3-jkvD97OmPXZ8_TO84Wjqgc/viewform', link: 'advanced-for-devs',
}, },
{ {
level: 'Advanced', level: 'Advanced',
header: 'Managing Unleash for DevOps/Admins', header: 'Managing Unleash for DevOps/Admins',
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: 'https://docs.google.com/forms/d/1JlIqmXI3P7dj0n-OiUs2IYsYXgmqw23BChaemlSgHJA/viewform', link: 'managing-unleash-for-devops',
}, },
]; ];