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.
37 lines
1.2 KiB
37 lines
1.2 KiB
--- |
|
import GridItem from '../../components/GridItem.astro'; |
|
import SimplePageHeader from '../../components/SimplePageHeader.astro'; |
|
import BaseLayout from '../../layouts/BaseLayout.astro'; |
|
import { getAllQuestionGroups } from '../../lib/question-group'; |
|
|
|
const questionGroups = await getAllQuestionGroups(); |
|
--- |
|
|
|
<BaseLayout |
|
title='Questions' |
|
description={'Step by step guides and paths to learn different tools or technologies'} |
|
permalink={'/roadmaps'} |
|
> |
|
<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'> |
|
{ |
|
questionGroups.map((questionGroup) => ( |
|
<GridItem |
|
url={`/questions/${questionGroup.id}`} |
|
isNew={questionGroup.frontmatter.isNew} |
|
title={questionGroup.frontmatter.title} |
|
description={`${questionGroup.questions.length} Questions · ${questionGroup.allTopics.length} topics`} |
|
/> |
|
)) |
|
} |
|
</div> |
|
</div> |
|
</div> |
|
</BaseLayout>
|
|
|