diff --git a/public/img/apprenticeship.png b/public/img/apprenticeship.png new file mode 100644 index 0000000..f65dc29 Binary files /dev/null and b/public/img/apprenticeship.png differ diff --git a/public/img/code.png b/public/img/code.png new file mode 100644 index 0000000..2b84cbe Binary files /dev/null and b/public/img/code.png differ diff --git a/public/img/work.png b/public/img/work.png new file mode 100644 index 0000000..40bb5ab Binary files /dev/null and b/public/img/work.png differ diff --git a/src/components/partials/StoryItem.tsx b/src/components/partials/StoryItem.tsx index 4220a77..953f60b 100644 --- a/src/components/partials/StoryItem.tsx +++ b/src/components/partials/StoryItem.tsx @@ -23,10 +23,10 @@ export const StoryItem = (props: StoryItemProps) => {
{props.item.title}
{props.item.description}
- {props.item.epochTime &&{props.item.epochTime}
} + {props.item.epochTime &&{props.item.epochTime}
} - diff --git a/src/pages/mystory.astro b/src/pages/mystory.astro index 273a875..75142d5 100644 --- a/src/pages/mystory.astro +++ b/src/pages/mystory.astro @@ -15,16 +15,24 @@ const storyItems: StoryItemType[] = [ title: "First Code", description: "At the age of 13, I penned my first lines of code. Over the following years, I transitioned from crafting Minecraft plugins with Java to entering the world of web development.", - image: "", + image: "/img/code.png", epochTime: "2017 - 2019" }, { title: "Apprenticeship", description: "During my three-year apprenticeship, I delved into web and backend application development, honing my skills and building a strong foundation in the field.", - image: "/img/terminal.svg", + image: "/img/apprenticeship.png", epochTime: "2020 - 2023", - paddingedImage: true + paddingedImage: false + }, + { + title: "Coding", + description: + "Now, i'm working professionally at a digital-agency in munich, developing enterprise-level Web-Solutions for small and big companies.", + image: "/img/work.png", + epochTime: "since 2023", + paddingedImage: false } ]; ---