/ typst / sections / skills.typ
skills.typ
 1  // Relevant Skills section
 2  
 3  #import "../styles.typ": *
 4  
 5  #let skills(entries) = {
 6    section-heading("Relevant Skills")
 7  
 8    skills-table(
 9      ..entries.map(e => skill-row(e.label, e.details)),
10    )
11  }