Skip to content

Commit 157a2d1

Browse files
committed
Add CSS roadmap everywhere
1 parent 6c925a9 commit 157a2d1

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

readme.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ Here is the list of available roadmaps with more being actively worked upon.
3636
- [Backend Roadmap](https://roadmap.sh/backend) / [Backend Beginner Roadmap](https://roadmap.sh/backend?r=backend-beginner)
3737
- [DevOps Roadmap](https://roadmap.sh/devops) / [DevOps Beginner Roadmap](https://roadmap.sh/devops?r=devops-beginner)
3838
- [Full Stack Roadmap](https://roadmap.sh/full-stack)
39+
- [HTML Roadmap](https://roadmap.sh/html)
40+
- [CSS Roadmap](https://roadmap.sh/css)
41+
- [JavaScript Roadmap](https://roadmap.sh/javascript)
42+
- [TypeScript Roadmap](https://roadmap.sh/typescript)
3943
- [Git and GitHub](https://roadmap.sh/git-github) / [Git and GitHub Beginner](https://roadmap.sh/git-github?r=git-github-beginner)
4044
- [API Design Roadmap](https://roadmap.sh/api-design)
4145
- [Computer Science Roadmap](https://roadmap.sh/computer-science)
@@ -58,9 +62,6 @@ Here is the list of available roadmaps with more being actively worked upon.
5862
- [Software Architect Roadmap](https://roadmap.sh/software-architect)
5963
- [Game Developer Roadmap](https://roadmap.sh/game-developer) / [Server Side Game Developer](https://roadmap.sh/server-side-game-developer)
6064
- [Software Design and Architecture Roadmap](https://roadmap.sh/software-design-architecture)
61-
- [JavaScript Roadmap](https://roadmap.sh/javascript)
62-
- [HTML Roadmap](https://roadmap.sh/html)
63-
- [TypeScript Roadmap](https://roadmap.sh/typescript)
6465
- [C++ Roadmap](https://roadmap.sh/cpp)
6566
- [React Roadmap](https://roadmap.sh/react)
6667
- [Next.js Roadmap](https://roadmap.sh/nextjs)

src/components/Roadmaps/RoadmapsPage.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,12 @@ const groups: GroupType[] = [
180180
type: 'skill',
181181
otherGroups: ['Web Development', 'Absolute Beginners'],
182182
},
183+
{
184+
title: 'CSS',
185+
link: '/css',
186+
type: 'skill',
187+
otherGroups: ['Web Development', 'Absolute Beginners'],
188+
},
183189
{
184190
title: 'JavaScript',
185191
link: '/javascript',

src/pages/get-started.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,11 @@ import BaseLayout from '../layouts/BaseLayout.astro';
209209
<RoadmapMultiCard
210210
roadmaps={[
211211
{ title: 'HTML', link: '/html' },
212+
{ title: 'CSS', link: '/css' },
212213
{ title: 'JavaScript', link: '/javascript' },
213214
{ title: 'TypeScript', link: '/typescript' },
214215
]}
215-
description='How about mastering the language of the web: JavaScript? or maybe TypeScript? or maybe HTML?'
216+
description='How about mastering the language of the web: JavaScript? or maybe TypeScript? or maybe HTML or CSS?'
216217
secondaryRoadmaps={[
217218
{
218219
title: 'Frontend Performance',

0 commit comments

Comments
 (0)