computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
1 year ago
|
---
|
||
|
import GridItem from '../../components/GridItem.astro';
|
||
|
import SimplePageHeader from '../../components/SimplePageHeader.astro';
|
||
|
import BaseLayout from '../../layouts/BaseLayout.astro';
|
||
|
---
|
||
|
|
||
|
<BaseLayout
|
||
|
title='Questions'
|
||
|
description={'Step by step guides and paths to learn different tools or technologies'}
|
||
|
permalink={'/roadmaps'}
|
||
|
noIndex={true}
|
||
|
>
|
||
|
<SimplePageHeader
|
||
|
title='Questions'
|
||
|
description='Quizzes to help you test and improve your knowledge and skill up'
|
||
|
showYouTubeAlert={false}
|
||
|
/>
|
||
|
|
||
|
<div class='flex bg-gray-100 pb-14 pt-4 sm:pb-16 sm:pt-8'>
|
||
|
<div class='container'>
|
||
|
<div class='grid grid-cols-1 gap-1 sm:grid-cols-2 sm:gap-3'>
|
||
|
<GridItem
|
||
|
url={`/questions/frontend`}
|
||
|
isNew={false}
|
||
|
title={'Frontend Development'}
|
||
|
description={'25 Questions · 5 topics'}
|
||
|
/>
|
||
|
<GridItem
|
||
|
url={`/questions/backend`}
|
||
|
isNew={false}
|
||
|
title={'Backend Development'}
|
||
|
description={'25 Questions · 5 topics'}
|
||
|
/>
|
||
|
<GridItem
|
||
|
url={`/questions/devops`}
|
||
|
isNew={false}
|
||
|
title={'DevOps Engineering'}
|
||
|
description={'25 Questions · 5 topics'}
|
||
|
/>
|
||
|
<GridItem
|
||
|
url={`/questions/javascript`}
|
||
|
isNew={false}
|
||
|
title={'JavaScript'}
|
||
|
description={'25 Questions · 5 topics'}
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</BaseLayout>
|