From 5aae35d2d12fdc860e12ed4632149db2666d7fae Mon Sep 17 00:00:00 2001 From: poyrazavsever Date: Thu, 16 Jul 2026 09:37:03 +0300 Subject: [PATCH] feat: updated about content --- components/about-content.tsx | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/components/about-content.tsx b/components/about-content.tsx index 4926ac6..7a37ec3 100644 --- a/components/about-content.tsx +++ b/components/about-content.tsx @@ -43,16 +43,19 @@ function SectionHeading({ function TimelineList({ items }: { items: TimelineItem[] }) { return ( -
+
{items.map((item) => ( -
- +
+ - -
-
+
+
+
{item.title} @@ -64,9 +67,12 @@ function TimelineList({ items }: { items: TimelineItem[] }) {
- + {item.period} - +
{item.description ? ( @@ -77,7 +83,7 @@ function TimelineList({ items }: { items: TimelineItem[] }) { {item.description} ) : null} - +
))}
@@ -94,7 +100,6 @@ export function AboutContent() { title: getLocalizedValue(item.title, locale), subtitle: item.institution, period: getLocalizedValue(item.period, locale), - description: getLocalizedValue(item.description, locale), })); const experienceItems: TimelineItem[] = EXPERIENCE.map((item) => ({ @@ -134,7 +139,7 @@ export function AboutContent() { -
+