--- import SectionContainer from "../components/SectionContainer.astro"; import resume from "../data/resume.json"; ---

{resume.basics.name}

Profile

{resume.basics.summary}

Relevant work

{ resume.work.map((work) => (

{work.position}

{work.name}

{work.startDate} - {work.endDate}

    {work.highlights.map((highlight) => (
  • {highlight}
  • ))}
)) }

Education

{ resume.education.map((education) => (

{education.area}

{education.institution}

{education.startDate} - {education.endDate}

{education.description ? (
  • {education.description}
) : null}
)) }

Volunteer work

{ resume.volunteer.map((volunteer) => (

{volunteer.organization}

{volunteer.position}

{volunteer.startDate} - {volunteer.endDate}

    {volunteer.highlights.map((highlight) => (
  • {highlight}
  • ))}
)) }

Certifications

{ resume.certifications.map((certification) => (

{certification.name}

{certification.date}

)) }

Skills

{ resume.skills.map((skill) => (

{skill.name}

{skill.keywords.join(", ")}
)) }