mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-06-30 00:09:09 +00:00
feat: page and components for timeline
This commit is contained in:
parent
e134d1cf00
commit
4e1b4cb5fe
4 changed files with 124 additions and 1 deletions
57
src/routes/timeline/timeline-items.ts
Normal file
57
src/routes/timeline/timeline-items.ts
Normal file
|
@ -0,0 +1,57 @@
|
|||
export interface TimelineItem {
|
||||
title: string;
|
||||
link?: string;
|
||||
image?: string;
|
||||
description: string;
|
||||
date: string;
|
||||
}
|
||||
|
||||
const timelineItems: TimelineItem[] = [
|
||||
{
|
||||
title: 'The Linux Foundation',
|
||||
description: 'Certified Kubernetes Administrator',
|
||||
date: '2022'
|
||||
},
|
||||
{
|
||||
title: 'Microsoft Certified',
|
||||
description: 'Administrator Associate (AZ-104)',
|
||||
date: '2021'
|
||||
},
|
||||
{
|
||||
title: 'Triple',
|
||||
description: 'DevOps Engineer',
|
||||
date: '2021'
|
||||
},
|
||||
{
|
||||
title: 'Urban Deal',
|
||||
description: 'Full Stack Developer',
|
||||
date: '2019'
|
||||
},
|
||||
{
|
||||
title: 'Diastase Netwerk',
|
||||
description: 'Volunteer Web Administrator',
|
||||
date: '2019'
|
||||
},
|
||||
{
|
||||
title: 'Vrije Universiteit Amsterdam',
|
||||
description: 'Master Information Sciences',
|
||||
date: '2018'
|
||||
},
|
||||
{
|
||||
title: 'Vrije Universiteit Amsterdam',
|
||||
description: 'Bachelor Information Sciences',
|
||||
date: '2014'
|
||||
},
|
||||
{
|
||||
title: 'Kinderboerderij Bijlmerweide',
|
||||
description: 'Volunteer Web Administrator',
|
||||
date: '2016'
|
||||
},
|
||||
{
|
||||
title: 'Zaanlands Lyceum',
|
||||
description: 'Pre-university education (VWO)',
|
||||
date: '2008'
|
||||
}
|
||||
];
|
||||
|
||||
export default timelineItems;
|
Loading…
Add table
Add a link
Reference in a new issue