19 lines
573 B
TypeScript
19 lines
573 B
TypeScript
export const EDUCATION = [
|
|
{
|
|
id: "ostim-university",
|
|
title: "Software Engineering - 2nd Year Student",
|
|
institution: "OSTIM Technical University",
|
|
period: "2024 - Present",
|
|
description:
|
|
"Focused on software systems, product thinking, and interdisciplinary project development.",
|
|
},
|
|
{
|
|
id: "high-school",
|
|
title: "High School",
|
|
institution: "Tusba Science High School",
|
|
period: "2020 - 2024",
|
|
description:
|
|
"Built strong fundamentals and explored web and mobile development through personal projects.",
|
|
},
|
|
] as const;
|