feat: ExperienceCard stack field and Card subcomponent layout

This commit is contained in:
Ilia Mashkov
2026-05-18 12:39:41 +03:00
parent 543020f85c
commit 782c619a91
5 changed files with 36 additions and 13 deletions
@@ -18,6 +18,7 @@ const mockItems = [
start_date: '2022-01-01T00:00:00Z',
end_date: null,
description: 'Built critical systems.',
stack: ['React', 'TypeScript'],
order: 1,
},
{
@@ -31,6 +32,7 @@ const mockItems = [
start_date: '2020-01-01T00:00:00Z',
end_date: '2021-12-31T00:00:00Z',
description: 'Learned the ropes.',
stack: [],
order: 2,
},
];
@@ -21,6 +21,7 @@ export default async function ExperienceSection() {
company={exp.company}
period={formatYearRange(exp.start_date, exp.end_date)}
description={exp.description}
stack={exp.stack}
/>
))}
</div>