-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c57fb4
commit 5d7ac78
Showing
10 changed files
with
335 additions
and
167 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,67 @@ | ||
import React from 'react' | ||
import './experience.css' | ||
import {BsFillPatchCheckFill} from 'react-icons/bs' | ||
const experience = () => { | ||
return ( | ||
<section id='experience'> | ||
<h5 data-aos="zoom-in-up" data-aos-duration="1300">What Skills I Have</h5> | ||
<h2 data-aos="zoom-in-up" data-aos-duration="1300">My Experience</h2> | ||
import React from 'react'; | ||
import { | ||
VerticalTimeline, | ||
VerticalTimelineElement, | ||
} from 'react-vertical-timeline-component'; | ||
import 'react-vertical-timeline-component/style.min.css'; | ||
import './experience.css'; // Make sure to create this CSS file | ||
|
||
<div className="container experience__container"> | ||
<div className="experience__frontend" data-aos="zoom-in-up" data-aos-duration="1300"> | ||
<h3>Frontend Development</h3> | ||
<div className="experience__content"> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon" /> | ||
<div> | ||
<h4>HTML</h4> | ||
<small className="text-light">Experienced</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>CSS</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>JavaScript</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>Bootstrap</h4> | ||
<small className="text-light">Basic</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>React</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
</div> | ||
</div> | ||
<div className="experience__backend" data-aos="zoom-in-up" data-aos-duration="1300"> | ||
<h3>Backend Development</h3> | ||
<div className="experience__content"> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>PHP</h4> | ||
<small className="text-light">Basic</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>MongoDB</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>MySQL</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>Python</h4> | ||
<small className="text-light">Basic</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>JAVA</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
<article className="experience__details"> | ||
<BsFillPatchCheckFill className="experience__details-icon"/> | ||
<div> | ||
<h4>NodeJS</h4> | ||
<small className="text-light">Intermediate</small> | ||
</div> | ||
</article> | ||
</div> | ||
</div> | ||
const experiences = [ | ||
{ | ||
date: 'Jan 2024 - April 2024', | ||
title: 'Software Developer', | ||
company_name: 'Easeteq Software Solutions', | ||
icon: 'company/easeteq1.png', | ||
iconBg: '#1f242d', | ||
} | ||
]; | ||
|
||
const ExperienceCard = ({ experience }) => ( | ||
<VerticalTimelineElement | ||
contentStyle={{ | ||
background: 'transparent', | ||
color: '#292929', | ||
boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', | ||
borderRadius: '10px', | ||
border: '1px solid #fff', | ||
}} | ||
contentArrowStyle={{ borderRight: '7px solid #fff' }} | ||
date={<h3 className="text-dim text-18px font-bold" style={{color:"#fff"}}>{experience.date}</h3>} | ||
iconStyle={{ background: experience.iconBg }} | ||
icon={ | ||
<div className="flex justify-center items-center w-full h-full"> | ||
<img | ||
src={experience.icon} | ||
alt={experience.company_name} | ||
className="w-60% h-60% object-contain" | ||
/> | ||
</div> | ||
}> | ||
<div> | ||
<h3 className="text-jetLight text-24px font-bold">{experience.title}</h3> | ||
<p className="text-taupe text-22px font-semibold" style={{ margin: 0 }}> | ||
{experience.company_name} | ||
</p> | ||
</div> | ||
</VerticalTimelineElement> | ||
); | ||
|
||
const Experience = () => ( | ||
<div> | ||
<section id='experience'> | ||
<h5 data-aos="zoom-in-up" data-aos-duration="1200">What I've done so far</h5> | ||
<h2 data-aos="zoom-in-up" data-aos-duration="1300">Work Experience</h2> | ||
|
||
<div className="timeline"> | ||
<VerticalTimeline> | ||
{experiences.map((experience, index) => ( | ||
<ExperienceCard key={index} experience={experience} /> | ||
))} | ||
</VerticalTimeline> | ||
</div> | ||
|
||
</section> | ||
) | ||
} | ||
</div> | ||
); | ||
|
||
export default experience | ||
export default Experience; |
Oops, something went wrong.