rework of experience
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m8s

This commit is contained in:
2026-04-24 12:35:08 +02:00
parent 6bc9456b2d
commit c34d069d54
7 changed files with 610 additions and 48 deletions

View File

@@ -2,6 +2,13 @@ export interface Skill {
name: string;
}
export interface JobSubPhase {
label: string;
start_date: string;
end_date: string | null;
bullets: string[];
}
export interface Job {
id: number;
position: string;
@@ -10,6 +17,8 @@ export interface Job {
start_date: string;
end_date: string | null;
technologies: string[];
summary?: string;
sub_phases?: JobSubPhase[];
}
export interface Project {