Add cloudflare roadmap to get-started page

pull/8196/merge
Kamran Ahmed 1 week ago
parent a450b4ed5a
commit 72c670570b
  1. 1
      readme.md
  2. 6
      src/components/Roadmaps/RoadmapsPage.tsx
  3. 16
      src/pages/get-started.astro

@ -43,6 +43,7 @@ Here is the list of available roadmaps with more being actively worked upon.
- [AI and Data Scientist Roadmap](https://roadmap.sh/ai-data-scientist)
- [AI Engineer Roadmap](https://roadmap.sh/ai-engineer)
- [AWS Roadmap](https://roadmap.sh/aws)
- [Cloudflare Roadmap](https://roadmap.sh/cloudflare)
- [Linux Roadmap](https://roadmap.sh/linux)
- [Terraform Roadmap](https://roadmap.sh/terraform)
- [Data Analyst Roadmap](https://roadmap.sh/data-analyst)

@ -257,6 +257,12 @@ const groups: GroupType[] = [
type: 'skill',
otherGroups: ['Web Development'],
},
{
title: 'Cloudflare',
link: '/cloudflare',
type: 'skill',
otherGroups: ['Web Development'],
},
{
title: 'Linux',
link: '/linux',

@ -284,11 +284,14 @@ import ChangelogBanner from '../components/ChangelogBanner.astro';
description='Learn all you need to know to become a DevOps Engineer.'
/>
<RoadmapCard
icon={Cloud}
title='AWS'
link='/aws'
description='Learn all you need to know to become an AWS Engineer.'
<RoadmapMultiCard
roadmaps={[
{ title: 'AWS', link: '/aws' },
{ title: 'Cloudflare', link: '/cloudflare' },
]}
description='or perhaps you want to learn AWS or Cloudflare?'
secondaryRoadmaps={[{ title: 'Terraform', link: '/terraform' }]}
secondaryDescription='Or learn to automate your infrastructure using Terraform?'
/>
<RoadmapMultiCard
@ -296,9 +299,8 @@ import ChangelogBanner from '../components/ChangelogBanner.astro';
{ title: 'Docker', link: '/docker' },
{ title: 'Kubernetes', link: '/kubernetes' },
{ title: 'Linux', link: '/linux' },
{ title: 'Terraform', link: '/terraform' },
]}
description='or perhaps you want to learn Docker, Kubernetes, Terraform or Linux?'
description='or perhaps you want to learn Docker, Kubernetes or Linux?'
secondaryRoadmaps={[
{ title: 'Python', link: '/python' },
{ title: 'Go', link: '/golang' },

Loading…
Cancel
Save