From 57faa21148e5c06b65cf1f5b8086bf3d37b24336 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Fri, 26 Apr 2024 00:08:55 +0100 Subject: [PATCH] Add links to linux roadmap --- src/components/Roadmaps/RoadmapsPage.tsx | 6 ++++++ src/pages/get-started.astro | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/Roadmaps/RoadmapsPage.tsx b/src/components/Roadmaps/RoadmapsPage.tsx index bea0339fb..bc51ab1b7 100644 --- a/src/components/Roadmaps/RoadmapsPage.tsx +++ b/src/components/Roadmaps/RoadmapsPage.tsx @@ -210,6 +210,12 @@ const groups: GroupType[] = [ type: 'skill', otherGroups: ['Web Development'], }, + { + title: 'Linux', + link: '/linux', + type: 'skill', + otherGroups: ['Web Development'], + }, ], }, { diff --git a/src/pages/get-started.astro b/src/pages/get-started.astro index 68ed8afa7..3ae1a3842 100644 --- a/src/pages/get-started.astro +++ b/src/pages/get-started.astro @@ -277,8 +277,9 @@ import { TipItem } from '../components/GetStarted/TipItem'; roadmaps={[ { title: 'Docker', link: '/docker' }, { title: 'Kubernetes', link: '/kubernetes' }, + { title: 'Linux', link: '/linux' }, ]} - description='or perhaps you want to learn Docker or Kubernetes?' + description='or perhaps you want to learn Docker, Kubernetes or Linux?' secondaryRoadmaps={[ { title: 'Python', link: '/python' }, { title: 'Go', link: '/golang' },