23 lines
458 B
Typst
23 lines
458 B
Typst
|
// Imports
|
||
|
#import "@preview/brilliant-cv:2.0.3": cvSection, cvSkill, hBar
|
||
|
#let metadata = toml("../metadata.toml")
|
||
|
#let cvSection = cvSection.with(metadata: metadata)
|
||
|
|
||
|
|
||
|
#cvSection("Skills")
|
||
|
|
||
|
#cvSkill(
|
||
|
type: [Sprachen],
|
||
|
info: [Deutsch #hBar() Englisch],
|
||
|
)
|
||
|
|
||
|
#cvSkill(
|
||
|
type: [Tech Stack],
|
||
|
info: [Tableau #hBar() Python (Pandas/Numpy) #hBar() PostgreSQL],
|
||
|
)
|
||
|
|
||
|
#cvSkill(
|
||
|
type: [Personal Interests],
|
||
|
info: [Swimming #hBar() Cooking #hBar() Reading],
|
||
|
)
|