Skip to content

Commit 72c6705

Browse files
committed
Add cloudflare roadmap to get-started page
1 parent a450b4e commit 72c6705

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Here is the list of available roadmaps with more being actively worked upon.
4343
- [AI and Data Scientist Roadmap](https://roadmap.sh/ai-data-scientist)
4444
- [AI Engineer Roadmap](https://roadmap.sh/ai-engineer)
4545
- [AWS Roadmap](https://roadmap.sh/aws)
46+
- [Cloudflare Roadmap](https://roadmap.sh/cloudflare)
4647
- [Linux Roadmap](https://roadmap.sh/linux)
4748
- [Terraform Roadmap](https://roadmap.sh/terraform)
4849
- [Data Analyst Roadmap](https://roadmap.sh/data-analyst)

src/components/Roadmaps/RoadmapsPage.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,12 @@ const groups: GroupType[] = [
257257
type: 'skill',
258258
otherGroups: ['Web Development'],
259259
},
260+
{
261+
title: 'Cloudflare',
262+
link: '/cloudflare',
263+
type: 'skill',
264+
otherGroups: ['Web Development'],
265+
},
260266
{
261267
title: 'Linux',
262268
link: '/linux',

src/pages/get-started.astro

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -284,21 +284,23 @@ import ChangelogBanner from '../components/ChangelogBanner.astro';
284284
description='Learn all you need to know to become a DevOps Engineer.'
285285
/>
286286

287-
<RoadmapCard
288-
icon={Cloud}
289-
title='AWS'
290-
link='/aws'
291-
description='Learn all you need to know to become an AWS Engineer.'
287+
<RoadmapMultiCard
288+
roadmaps={[
289+
{ title: 'AWS', link: '/aws' },
290+
{ title: 'Cloudflare', link: '/cloudflare' },
291+
]}
292+
description='or perhaps you want to learn AWS or Cloudflare?'
293+
secondaryRoadmaps={[{ title: 'Terraform', link: '/terraform' }]}
294+
secondaryDescription='Or learn to automate your infrastructure using Terraform?'
292295
/>
293296

294297
<RoadmapMultiCard
295298
roadmaps={[
296299
{ title: 'Docker', link: '/docker' },
297300
{ title: 'Kubernetes', link: '/kubernetes' },
298301
{ title: 'Linux', link: '/linux' },
299-
{ title: 'Terraform', link: '/terraform' },
300302
]}
301-
description='or perhaps you want to learn Docker, Kubernetes, Terraform or Linux?'
303+
description='or perhaps you want to learn Docker, Kubernetes or Linux?'
302304
secondaryRoadmaps={[
303305
{ title: 'Python', link: '/python' },
304306
{ title: 'Go', link: '/golang' },

0 commit comments

Comments
 (0)