--- import { getCollection } from 'astro:content'; import Base from '../../layouts/Base.astro'; import '../../styles/sub-pages.css'; const tutorials = (await getCollection('tutorials')) .sort((a, b) => a.data.order - b.data.order); ---

Tutorials

Step-by-step guides, from first install to live browser iteration.

{tutorials.map((t, i) => ( {String(i + 1).padStart(2, '0')}

{t.data.title}

{t.data.description}

))}