From 01f0b8fed60c94effefcaca84e1973726ddea9ce Mon Sep 17 00:00:00 2001 From: Ananya Date: Tue, 5 Aug 2025 02:27:11 +0530 Subject: [PATCH 1/3] profile page changes --- components/profile/experience-section.tsx | 6 +++++- components/profile/export-profile-button.tsx | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/components/profile/experience-section.tsx b/components/profile/experience-section.tsx index 1a5a5e1..cebae2c 100644 --- a/components/profile/experience-section.tsx +++ b/components/profile/experience-section.tsx @@ -8,6 +8,7 @@ interface Experience { id: string; title: string; company: string; + role: string; start_date: string; end_date: string | null; description: string; @@ -40,7 +41,10 @@ export function ExperienceSection({ experiences, isEditable }: ExperienceSection

{experience.title}

{experience.company}

-

{dateRange}

+

+ {experience.role} + {dateRange} +

{experience.description && (