1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-07-31 14:30:13 +02:00

Add missing iOS roadmap to roadmaps and /get-started

This commit is contained in:
Kamran Ahmed
2024-05-29 23:48:35 +01:00
parent bab4a1581d
commit eaebe7babd
3 changed files with 13 additions and 9 deletions

View File

@@ -232,6 +232,11 @@ const groups: GroupType[] = [
link: '/android', link: '/android',
type: 'role', type: 'role',
}, },
{
title: 'iOS',
link: '/ios',
type: 'role',
},
{ {
title: 'React Native', title: 'React Native',
link: '/react-native', link: '/react-native',

View File

@@ -308,6 +308,13 @@ import { TipItem } from '../components/GetStarted/TipItem';
description='Learn all you need to know to become an Android Developer.' description='Learn all you need to know to become an Android Developer.'
/> />
<RoadmapCard
icon={Smartphone}
title='iOS'
link='/ios'
description='Learn all you need to know to become an iOS Developer.'
/>
<RoadmapMultiCard <RoadmapMultiCard
roadmaps={[ roadmaps={[
{ title: 'React Native', link: '/react-native' }, { title: 'React Native', link: '/react-native' },
@@ -315,14 +322,6 @@ import { TipItem } from '../components/GetStarted/TipItem';
]} ]}
description='Or learn a cross-platform framework?' description='Or learn a cross-platform framework?'
/> />
<RoadmapCard
icon={Smartphone}
title='iOS'
link='/ios'
isUpcoming={true}
description='We will be adding an iOS roadmap soon.'
/>
</RoleRoadmaps> </RoleRoadmaps>
<RoleRoadmaps <RoleRoadmaps
badge='AI and Machine Learning' badge='AI and Machine Learning'

View File

@@ -26,7 +26,7 @@ const questionGroups = await getAllQuestionGroups();
<GridItem <GridItem
url={`/questions/${questionGroup.id}`} url={`/questions/${questionGroup.id}`}
isNew={questionGroup.frontmatter.isNew} isNew={questionGroup.frontmatter.isNew}
title={questionGroup.frontmatter.title} title={questionGroup.frontmatter.briefTitle}
description={`${questionGroup.questions.length} Questions &middot; ${questionGroup.allTopics.length} topics`} description={`${questionGroup.questions.length} Questions &middot; ${questionGroup.allTopics.length} topics`}
/> />
)) ))