Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | 2x 10x 10x 10x 60x | import React from 'react';
import { useTranslation } from 'react-i18next';
import './Experience.css';
/**
* Displays a timeline of professional work experience.
* Renders job titles, employment dates, and position summaries from i18n resources.
*
* @returns {JSX.Element} Experience section with a list of job cards.
*/
const Experience = () => {
const { t } = useTranslation();
const experiences = [
{
title: t('experienceSection.experience1.title'),
date: t('experienceSection.experience1.date'),
summary: t('experienceSection.experience1.summary'),
},
{
title: t('experienceSection.experience2.title'),
date: t('experienceSection.experience2.date'),
summary: t('experienceSection.experience2.summary'),
},
{
title: t('experienceSection.experience3.title'),
date: t('experienceSection.experience3.date'),
summary: t('experienceSection.experience3.summary'),
},
{
title: t('experienceSection.experience4.title'),
date: t('experienceSection.experience4.date'),
summary: t('experienceSection.experience4.summary'),
},
{
title: t('experienceSection.experience5.title'),
date: t('experienceSection.experience5.date'),
summary: t('experienceSection.experience5.summary'),
},
{
title: t('experienceSection.experience6.title'),
date: t('experienceSection.experience6.date'),
summary: t('experienceSection.experience6.summary'),
},
];
return (
<div className="experience-container" id="Experience">
<h2>{t('experience.jobExperiences')}</h2>
<div className="experience-list">
{experiences.map((exp, index) => (
<div className="experience-card" key={index}>
<h3>{exp.title}</h3>
<p className="date">{exp.date}</p>
<p>{exp.summary}</p>
</div>
))}
</div>
</div>
);
};
export default Experience;
|