--- import { getAllExperience } from "@/data/experience"; import PageLayout from "@/layouts/Base.astro"; const experiences = await getAllExperience(); const meta = { description: "Roles and organizations I've worked with", title: "Experience", }; const range = (start: Date, end?: Date) => `${start.getFullYear()} – ${end ? end.getFullYear() : "Present"}`; ---

Experience