Skip to content

Commit

Permalink
experience updated
Browse files Browse the repository at this point in the history
  • Loading branch information
tush-tr committed Dec 25, 2023
1 parent a721059 commit 42ef213
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 16 deletions.
8 changes: 4 additions & 4 deletions src/components/HomePage/AboutMe/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ const AboutMe = () => {
<p className="about-me-section-para-2">
Currently I'm working as a{" "}
<span className="about-me-section-para-highlight">
DevOps Engineer at HCL Technologies
DevOps Engineer at Amazon
</span>
. As my full-time job, I mostly work on automating critical
. As my full-time job, I mostly work on automating and managing critical
deployments and tasks over a large infrastructure.
</p>
<p className="about-me-section-para-3">
Expand All @@ -37,14 +37,14 @@ const AboutMe = () => {
<li>JavaScript (ES6+)</li>
<li>React</li>
<li>Node.js</li>
<li>Next.js</li>
<li>Go</li>
</ul>
</div>
<div>
<ul>
<li>Docker</li>
<li>Kubernetes</li>
<li>Google Cloud Platform</li>
<li>AWS</li>
<li>CI/CD</li>
</ul>
</div>
Expand Down
37 changes: 26 additions & 11 deletions src/components/HomePage/Experience/experience.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,26 @@ import { useState } from "react";
import ExperienceCard from "./ExperienceCard";
import ExperienceData from "./ExperienceText";
const experience = {
amazon:(<ExperienceData>
<h5>
DevOps Engineer <span>@ Amazon</span>{" "}
</h5>
<h6 className="experience-time">Dec 2023 - present</h6>
<h6>Tech: AWS, CI/CD, Python, Docker.</h6>
<ul>
<li>
Implementing continuous integration pipelines using AWS code pipeline and other tools to automate build, testing, and
deployment of applications across environments on AWS infrastructure, resulting in 40% increase in developer
productivity.
</li>
</ul>
</ExperienceData>),
hcl: (
<ExperienceData>
<h5>
Software Engineer <span>@HCL Tech</span>{" "}
Software Engineer <span>@ HCL Tech</span>{" "}
</h5>
<h6 className="experience-time">March 2021 - present</h6>
<h6 className="experience-time">March 2021 - dec 2023</h6>
<h6>Tech: Google Cloud Platform(GCP), Nodejs, JavaScript, TypeScript, Golang, Python, Terraform, Github Actions, Docker, Kubernetes.</h6>
<ul>
<li>
Expand Down Expand Up @@ -100,8 +114,8 @@ const experience = {
};

const Experience = () => {
const [experienceData, setExperienceData] = useState(experience.hcl);
const [activeExperience, setActiveExperience] = useState("hcl");
const [experienceData, setExperienceData] = useState(experience.amazon);
const [activeExperience, setActiveExperience] = useState("amazon");
const selectHandler = (event) => {
setExperienceData(experience[event.target.value]);
setActiveExperience(event.target.value);
Expand All @@ -110,20 +124,21 @@ const Experience = () => {
return (
<ExperienceCard>
<div className="experience-card__companies">
<button
onClick={selectHandler}
className={activeExperience === "amazon" ? "activeExperience" : ""}
value="amazon"
>
Amazon
</button>
<button
onClick={selectHandler}
className={activeExperience === "hcl" ? "activeExperience" : ""}
value="hcl"
>
HCL Tech
</button>
{/* <button
onClick={selectHandler}
className={activeExperience === "qbh" ? "activeExperience" : ""}
value="qbh"
>
QBH Soft
</button> */}

</div>
<div className="experience-card__data">
<p>{experienceData}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/HomePage/Intro/Intro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Intro = () => {
I build things for the web on Cloud.
</h3>
<p className="intro-section-paragraph">
I'm a DevOps Engineer and a passionate Developer having 2+ years of
I'm a DevOps Engineer and a passionate Developer having 3+ years of
hands-on experience in automating and optimizing critical deployments
over a large infrastructure.
<br />
Expand Down

0 comments on commit 42ef213

Please sign in to comment.