feat: ExperienceCard stack field and Card subcomponent layout
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user