Files
portfolio_frontend/src/components/Experiences.jsx
T

44 lines
1.4 KiB
React

import '../styles/Experiences.css';
import SingleExperience from './SingleExperience';
function Experiences() {
const experiencesData = [
{
role: "Web Development Intern",
company: "Pandora",
duration: "April 2024",
location: "Rennes (Ille-et-Vilaine), France",
tasks: [
"Development of a dynamic website with database integration (HTML, CSS, PHP, SQL)",
"Created a reusable interface used as an internal learning resource",
"Introduction to GitHub Actions"
]
},
{
role: "IT Support Intern",
company: "INRAE",
duration: "April 2023",
location: "Rennes (Ille-et-Vilaine), France",
tasks: [
"Introduction to ProxMox Backup and UpdateEngine tools",
"Preparation of two workstations",
"Setup of a Wi-Fi hotspot using a Raspberry Pi",
"Installation of a RAID 1 system"
]
}
];
return (
<section id="experiences-section">
<h1 className="section-title">Experiences</h1>
<div className="experiences-container">
{experiencesData.map((exp) => (
<SingleExperience experience={exp}/>
))}
</div>
</section>
);
}
export default Experiences;