Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Mulcro committed Nov 28, 2024
1 parent 036afb5 commit 27f6e20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"scripts": {
"start": "serve -s build",
"dev": "react-scripts start",
"dev": "vite",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Experience.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ExperienceCard = ({experience}) => {
iconStyle={{background: experience.iconBg }}
icon={
<div className='flex justify-center items-center'>
<img src={experience.icon} className={ experience.title == "Sales Associate" ? 'w-[80%] object-contain mt-5' : 'w-[80%] object-contain'} alt={`Image of ${experience.company_name} as ${experience.title}`}/>
<img src={experience.icon} className={ experience.title == "IT Operations Specialist" ? 'w-[80%] object-contain mt-5' : 'w-[80%] object-contain'} alt={`Image of ${experience.company_name} as ${experience.title}`}/>
</div>
}
>
Expand Down
2 changes: 1 addition & 1 deletion src/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const technologies = [

const experiences = [
{
title: "Sales Associate",
title: "IT Operations Specialist",
company_name: "Spheres Numerique et Commerciales",
icon: snc,
iconBg: "#E6DEDD",
Expand Down

0 comments on commit 27f6e20

Please sign in to comment.