feat: initial typst template for resume

This commit is contained in:
2026-05-24 21:46:44 +02:00
parent 32d6ff6ba3
commit 02d99a15a0
46 changed files with 11612 additions and 2 deletions

View File

@ -0,0 +1,45 @@
// Imports
#import "@preview/brilliant-cv:4.0.1": (
cv-section, cv-skill, cv-skill-tag, cv-skill-with-level, h-bar,
)
#cv-section("Skills")
#cv-skill-with-level(
type: [Languages],
level: 4,
info: [English (Native) #h-bar() French (Fluent) #h-bar() Chinese (Conversational)],
)
#cv-skill-with-level(
type: [Programming],
level: 5,
info: [Python #h-bar() SQL #h-bar() R],
)
#cv-skill(
type: [Tech Stack],
info: [Tableau #h-bar() Snowflake #h-bar() AWS #h-bar() Docker #h-bar() Git],
)
#cv-skill(
type: [Frameworks & Libraries],
info: [Pandas #h-bar() NumPy #h-bar() Scikit-learn #h-bar() TensorFlow #h-bar() FastAPI],
)
// Skill tags example
#cv-skill(
type: [Certifications],
info: [
#cv-skill-tag([AWS Certified])
#cv-skill-tag([Google Analytics])
#cv-skill-tag([Tableau Desktop])
#cv-skill-tag([Scrum Master])
],
)
#cv-skill(
type: [Personal Interests],
info: [Swimming #h-bar() Cooking #h-bar() Reading #h-bar() Photography],
)