Skip to content

Commit

Permalink
update Eduction and Experince
Browse files Browse the repository at this point in the history
  • Loading branch information
anurag270102 committed Jan 4, 2025
1 parent b4b0b8a commit 8bfdfd0
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 57 deletions.
4 changes: 1 addition & 3 deletions src/component/ProjectCard/Project.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
overflow: hidden;
}
.product-details {
position: relative;

position: relative;
}

#container .product-details h1:before{
transform: translate(25px, -15px);
background: #ffe6e6;
Expand Down
118 changes: 64 additions & 54 deletions src/component/about/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,68 @@ import Education from "../Education/Education";
import Experience from "../Experience/Experience";

const About = () => {
return ([
<div key={1212} className="mt-10 w-full flex flex-col justify-center bg-inherit">
<div className="bg-gradient-to-t from-white to-[#cecece] p-5 rounded-[30px] w-full">
<h2 className="font-PlayfairDisplaySC font-bold mx-auto items-center text-center text-black text-4xl mt-5 ">Education</h2>
<div className="flex flex-row flex-wrap justify-between lg:justify-evenly ">
<Education
title={'Collage'}
time={'OCT 2021 - PRESENT'}
per={'9.32 CGPA'}
name1={'CHAROTAR UNIVERSITY '}
city={'ANAND,INDIA'}
>
</Education>
<Education
title={'Higher Secondary'}
time={'JUN 2019 - MAR 2021'}
per={'85%'}
name1={'SHAKTI HIGHER SECONDARY SCHOOL '}
city={'RAJKOT,INDIA'}
>
</Education>
<Education title={'Secondary'}
time={'JUN 2017 - MAR 2019'}
per={'87.33%'}
name1={'SMT. R.M. TILVA MADHYAMIK VIDHYALAY '}
city={'JAMNAGAR,INDIA'}
>
</Education>
</div>
</div>
<h2 className="font-PlayfairDisplaySC font-bold mx-auto items-center text-center text-black text-4xl mt-5 ">Experience</h2>

<div className="bg-white flex flex-row flex-wrap justify-between lg:justify-evenly">

<Experience
name1={'AUGMETIC INFINITE LLP '}
time={'MAY 2023 - JUN 2023'}
title={'Internship'}
city={'AHMEDABAD,INDIA'}
tech={'HTML,CSS,JS,REACT JS'}
desc={'During my internship, I applied my acquired skills in various technologies, including React JS, HTML5, CSS3, Bootstrap, and NPM, surpassing expectations in both depth and breadth of application. I also extended my proficiency to UI/UX design, incorporating tools like Material UI and utilizing command prompt styling with packages such as chalk.'}>
</Experience>
<Experience
name1={'CODSOFT '}
time={'MAY 2024 - JUN 2024'}
title={'Internship'}
city={'KOLKATA,INDIA'}
tech={'MERN STACK'}
desc={'During my internship, I applied my acquired skills in various technologies, including React JS, HTML5, CSS3, Bootstrap, and NPM, surpassing expectations in both depth and breadth of application. I also extended my proficiency to UI/UX design, incorporating tools like Material UI and utilizing command prompt styling with packages such as chalk.'}>
</Experience>
</div>
return [
<div
key={1212}
className="mt-10 w-full flex flex-col justify-center bg-inherit"
>
<div className="bg-gradient-to-t from-white to-[#cecece] p-5 rounded-[30px] w-full">
<h2 className="font-PlayfairDisplaySC font-bold mx-auto items-center text-center text-black text-4xl mt-5 ">
Education
</h2>
<div className="flex flex-row flex-wrap justify-between lg:justify-evenly ">
<Education
title={"Collage"}
time={"OCT 2021 - PRESENT"}
per={"9.36 CGPA"}
name1={"CHAROTAR UNIVERSITY "}
city={"ANAND,INDIA"}
></Education>
<Education
title={"Higher Secondary"}
time={"JUN 2019 - MAR 2021"}
per={"85%"}
name1={"SHAKTI HIGHER SECONDARY SCHOOL "}
city={"RAJKOT,INDIA"}
></Education>
<Education
title={"Secondary"}
time={"JUN 2017 - MAR 2019"}
per={"87.33%"}
name1={"SMT. R.M. TILVA MADHYAMIK VIDHYALAY "}
city={"JAMNAGAR,INDIA"}
></Education>
</div>
])
}
export default About;
</div>
<h2 className="font-PlayfairDisplaySC font-bold mx-auto items-center text-center text-black text-4xl mt-5 ">
Experience
</h2>

<div className="bg-white flex flex-row flex-wrap justify-between lg:justify-evenly">
<Experience
name1={"THINKBIZ TECHNOLOGY PVT. LTD."}
time={"JAN 2025 - PRESENT"}
title={"Internship"}
city={"AHMEDABAD,INDIA"}
tech={"MERN STACK"}
></Experience>
<Experience
name1={"CODSOFT"}
time={"MAY 2024 - JUN 2024"}
title={"Internship"}
city={"KOLKATA,INDIA"}
tech={"MERN STACK"}
></Experience>
<Experience
name1={"AUGMETIC INFINITE LLP"}
time={"MAY 2023 - JUN 2023"}
title={"Internship"}
city={"AHMEDABAD,INDIA"}
tech={"HTML,CSS,JS,REACT JS"}
></Experience>

</div>
</div>,
];
};
export default About;

0 comments on commit 8bfdfd0

Please sign in to comment.