Add link to data analyst roadmap

pull/5458/head
Kamran Ahmed 7 months ago
parent 03173f6017
commit 852622f5ac
  1. 1
      readme.md
  2. 2
      src/components/GetStarted/RoleRoadmaps.tsx
  3. 5
      src/components/Roadmaps/RoadmapsPage.tsx
  4. 9
      src/pages/get-started.astro

@ -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)

@ -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>

@ -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',

@ -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

Loading…
Cancel
Save