--- import { getCollection } from 'astro:content' import PageLayout from '@layouts/PageLayout.astro' const guides = await getCollection('guides') ---

Guide

{ guides.toReversed().map(guide => (
{guide.data.description}
{guide.data.tags.map((tag: string) => ( #{tag} ))}
)) }