--- import { Picture } from 'astro:assets'; import Time from '@/components/time/absolute.astro'; import { formatYearMonth } from '@/utils/time.js'; import { getCollection } from 'astro:content'; type Props = { class?: string; }; const { class: className, ...rest } = Astro.props; const allWork = await getCollection('work'); const work = allWork.sort((a, b) => { return new Date(b.data.startDate).getTime() - new Date(a.data.startDate).getTime(); }); ---

Work

{ work.map((item) => (
{item.data.logo &&

{item.data.summary}

)) }
See full work history