diff --git a/src/pages/index.astro b/src/pages/index.astro index 658bd2677..fea010cda 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -34,10 +34,11 @@ export const projectGroups = [ }, ]; -const guides = await listOfficialGuides(); -const questionGuides = guides.filter( +const allGuides = await listOfficialGuides(); +const questionGuides = allGuides.filter( (guide) => guide.roadmapId === 'questions', ); +const guides = allGuides.filter((guide) => guide.roadmapId !== 'questions'); const videos = await getAllVideos(); ---