This commit is contained in:
Harivansh Rathi 2024-12-06 19:59:57 -05:00
parent 8551fa1f46
commit 5c80b39e84
4 changed files with 35 additions and 36 deletions

View file

@ -17,7 +17,7 @@ const Education = () => {
>
Education
</motion.h2>
<motion.div
ref={ref}
initial={{ opacity: 0, y: 20 }}
@ -33,13 +33,12 @@ const Education = () => {
</div>
<div className="text-gray-600 mb-4">Expected May 2026</div>
<div className="mb-2">
<span className="font-semibold">GPA:</span> 3.7/4.0
<span className="font-semibold">Cumulative GPA:</span> 3.55/4.0
</div>
<div>
<span className="font-semibold">Relevant Coursework:</span>
<p className="text-gray-700">
Data structures and algorithms, Computer systems and organization,
Software development essentials
Data structures and algo, Computer systems and organization, Software dev essentials
</p>
</div>
</motion.div>
@ -47,4 +46,4 @@ const Education = () => {
);
};
export default Education;
export default Education;

View file

@ -33,31 +33,31 @@ const Experience = () => {
{
title: "Front End Development Intern",
company: "UNIKOVE TECHNOLOGIES",
date: "Mar 2022 - Apr 2022",
date: "June 2024 - August 2024",
description: [
"Utilized JavaScript and React.js to refine UX design elements, ensuring seamless functionality and user-centric interfaces",
"Utilized JavaScript and React.js to refine UX design elements, ensuring seamless functionality and integration",
"Collaborated with the design team to conceptualize and implement new web interfaces, improving user experience",
"Optimized front-end code by reducing JavaScript file sizes by 20%, improving website load time"
]
},
{
title: "Backend Development Intern",
company: "Moglix",
date: "May 2023 - Jul 2023",
title: "Software Development Intern",
company: "MOGLIX",
date: "June 2023 - August 2023",
description: [
"Developed Python algorithm to optimize routes for transportation of materials, increasing time and supply chain efficiency by 20%",
"Developed Python algorithm to optimize transportation routes, increasing time and supply chain efficiency by 20%",
"Developed ETL pipelines to streamline lead data processing, enabling faster outreach",
"Automated data extraction and transformation using various libraries in Python, reducing manual workload"
]
},
{
title: "Mechanical Engineering Intern",
title: "Software Engineering Intern",
company: "SAN AUTO",
date: "Dec 2021 - Jan 2022",
date: "June 2022 - August 2022",
description: [
"Learned 3D modeling, operating AutoCAD, and managed small projects with professionals in the field",
"Assisted head engineer with analyzing and improving manufacturing processes for aircraft components",
"Acquired skills in operating and maintaining CNC machines to ensure precision in manufacturing"
"Implemented manufacturing data analysis tools using Excel and Python, improving reporting speed by 20%",
"Optimized manufacturing data storage using mySQL, improving query performance",
"Created React dashboards with real-time production metrics visualization, increasing ease of data access"
]
}
];
@ -80,4 +80,4 @@ const Experience = () => {
);
};
export default Experience;
export default Experience;

View file

@ -76,9 +76,9 @@ const Projects = () => {
{
title: "Guide To Austen",
description: [
"Developed an interactive web application offering a comprehensive guide to weddings, inspired by Jane Austen's works",
"Designed a dynamic timeline of wedding traditions using TypeScript and D3.js for smooth user interaction",
"Built custom visualizations for character relationship analysis and wedding etiquettes, optimizing for performance with Vite"
"Built a React/TypeScript app with Shadcn/UI and Tailwind, implementing lazy loading for 40% faster loads",
"Developed an interactive force-directed graph using D3.js for character network analysis with custom functionality",
"Implemented a modular component system with TypeScript interfaces achieving 95% type safety across the website"
],
github: "https://github.com/harivansh-afk/ENGL-Final-Project",
demo: "https://guidetoausten.netlify.app/"

View file

@ -2,33 +2,33 @@ import React from 'react';
const skillCategories = [
{
title: "Frontend Development",
title: "Programming Languages",
skills: [
{ name: "React", level: 90 },
{ name: "JavaScript", level: 85 },
{ name: "TypeScript", level: 80 },
{ name: "Python", level: 90 },
{ name: "Java", level: 85 },
{ name: "TypeScript", level: 85 },
{ name: "HTML/CSS", level: 90 },
{ name: "Tailwind CSS", level: 85 },
{ name: "C/C++", level: 80 },
]
},
{
title: "Backend Development",
title: "Frameworks",
skills: [
{ name: "React.js", level: 90 },
{ name: "Node.js", level: 85 },
{ name: "Python", level: 80 },
{ name: "Java", level: 75 },
{ name: "SQL", level: 80 },
{ name: "MongoDB", level: 75 },
{ name: "Express.js", level: 85 },
{ name: "Vite", level: 80 },
{ name: "Next.js 14", level: 80 },
]
},
{
title: "Tools & Technologies",
title: "Tools & Databases",
skills: [
{ name: "Git", level: 85 },
{ name: "Docker", level: 75 },
{ name: "AWS", level: 70 },
{ name: "Linux", level: 80 },
{ name: "REST APIs", level: 85 },
{ name: "Git/Github", level: 90 },
{ name: "PostgreSQL", level: 85 },
{ name: "MySQL", level: 85 },
{ name: "Supabase", level: 80 },
{ name: "Vercel", level: 80 },
]
}
];