--- import cx from 'classnames'; import { getCollection } from 'astro:content'; import { sortBySortKey } from '../utils'; import { animation } from '../data/site'; import GridLayout from '../layouts/GridLayout.astro'; import PageTitle from '../components/PageTitle.astro'; import Picture from '../components/Picture.astro'; import { Link } from '../components'; import { Content as Intro } from '../text/sketchnotes/intro.mdx'; import { mapping } from '../mdx-components'; const allSketchnotes = await getCollection('sketchnotes'); allSketchnotes.sort(sortBySortKey); const title = 'Sketchnotes'; const description = 'This is a collection of Sketchnotes I’ve drawn.'; --- Sketchnotes