Skip to content

Commit

Permalink
Add link to data analyst roadmap
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Apr 2, 2024
1 parent 03173f6 commit 852622f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Here is the list of available roadmaps with more being actively worked upon.
- [Computer Science Roadmap](https://roadmap.sh/computer-science)
- [Data Structures and Algorithms Roadmap](https://roadmap.sh/datastructures-and-algorithms)
- [AI and Data Scientist Roadmap](https://roadmap.sh/ai-data-scientist)
- [Data Analyst Roadmap](https://roadmap.sh/data-analyst)
- [MLOps Roadmap](https://roadmap.sh/mlops)
- [QA Roadmap](https://roadmap.sh/qa)
- [Python Roadmap](https://roadmap.sh/python)
Expand Down
2 changes: 1 addition & 1 deletion src/components/GetStarted/RoleRoadmaps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function RoleRoadmaps(props: RoleRoadmapsProps) {
<SectionBadge title={badge} />
</div>
<div className="my-4 sm:my-7 text-left">
<h2 className="mb-1 text-xl sm:text-3xl font-semibold">{title}</h2>
<h2 className="mb-1 text-balance text-xl sm:text-3xl font-semibold">{title}</h2>
<p className="text-sm sm:text-base text-gray-500">{description}</p>

<div className="mt-4 sm:mt-7 grid sm:grid-cols-2 md:grid-cols-3 gap-3">{children}</div>
Expand Down
5 changes: 5 additions & 0 deletions src/components/Roadmaps/RoadmapsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ const groups: GroupType[] = [
link: '/ai-data-scientist',
type: 'role',
},
{
title: 'Data Analyst',
link: '/data-analyst',
type: 'role',
},
{
title: 'MLOps',
link: '/mlops',
Expand Down
9 changes: 8 additions & 1 deletion src/pages/get-started.astro
Original file line number Diff line number Diff line change
Expand Up @@ -328,11 +328,18 @@ import { TipItem } from '../components/GetStarted/TipItem';
description='Learn all you need to know to become an AI or Data Scientist.'
/>

<RoadmapCard
icon={Bot}
title='Data Analyst'
link='/data-analyst'
description='Learn all you need to know to become a Data Analyst.'
/>

<RoadmapCard
icon={MessageCircleCode}
title='Prompt Engineering'
link='/prompt-engineering'
description='Learn how to write better prompts for GPT-3 and other language models.'
description='Learn how to write better prompts for GPT-* and other language models.'
/>

<RoadmapCard
Expand Down

0 comments on commit 852622f

Please sign in to comment.