)
}
\ No newline at end of file
diff --git a/src/pages/mystory.astro b/src/pages/mystory.astro
index e0d2a48..279cb76 100644
--- a/src/pages/mystory.astro
+++ b/src/pages/mystory.astro
@@ -1,23 +1,36 @@
---
import { Navigation } from "../components/Navigation";
+import { StoryItems } from "../components/StoryItems";
+import { StoryItemType } from "../components/partials/StoryItem";
import Footer from "../views/Footer.astro";
-type StoryItem = {
- title: string,
- description: string,
- image: string,
-}
-
-
-const StoryItems: StoryItem[] = [
- {title: "Pre-Work", description:"", image:""}
-]
-
+const storyItems: StoryItemType[] = [
+ {
+ title: "Ctrl-Alt-Grow",
+ description:
+ "As a curious kid, I dove headfirst into the world of computers, playing around with code, gaming, and tech wonders, solidifying my enduring passion for all things digital.",
+ image: "/img/ctrl-alt-grow.png"
+ },
+ {
+ 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: "",
+ 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: "",
+ epochTime: "2020 - 2023"
+ }
+];
---
-
-