--- import PageLayout from "@/layouts/Base.astro"; const meta = { title: "/cv", description: "History of work", }; const experience = [ { company: "Stablecore", roles: [ { title: "Senior Solutions Engineer", period: "Jan 2026 – Present" }, ], }, { company: "Orbiter", roles: [{ title: "Co-Founder", period: "Jan 2025 – Jan 2026" }], }, { company: "OpenZeppelin", roles: [{ title: "Developer Relations", period: "Jun 2025 – Dec 2025" }], }, { company: "Pinata", roles: [ { title: "Head of Developer Relations", period: "Aug 2023 – Jun 2025" }, { title: "Head of Community", period: "Aug 2022 – Aug 2023" }, { title: "Community Manager", period: "Jan 2022 – Aug 2022" }, ], }, { company: "Old Point National Bank", roles: [ { title: "Customer Inquiry Specialist", period: "Dec 2017 – Jan 2022" }, ], }, { company: "Bass Pro Shops", roles: [ { title: "Hunting & Archery Dept. Team Lead", period: "Jul 2014 – Dec 2017", }, ], }, ]; ---

/cv

{experience.map((job, i) => (

{job.company}

    {job.roles.map((role) => (
  • {role.title}

    {role.period}

  • ))}
))}