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

📜 Sindre Kjelsrud

Last update: {resume.meta.lastModified}

Profile

{resume.basics.summary}

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

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

{volunteer.position}

{volunteer.organization}

{volunteer.startDate} - {volunteer.endDate}

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

Skills

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

{skill.name}

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