mirror of
https://github.com/harivansh-afk/Resume-website.git
synced 2026-04-17 14:01:24 +00:00
updates
This commit is contained in:
parent
8551fa1f46
commit
5c80b39e84
4 changed files with 35 additions and 36 deletions
|
|
@ -33,13 +33,12 @@ const Education = () => {
|
||||||
</div>
|
</div>
|
||||||
<div className="text-gray-600 mb-4">Expected May 2026</div>
|
<div className="text-gray-600 mb-4">Expected May 2026</div>
|
||||||
<div className="mb-2">
|
<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>
|
||||||
<div>
|
<div>
|
||||||
<span className="font-semibold">Relevant Coursework:</span>
|
<span className="font-semibold">Relevant Coursework:</span>
|
||||||
<p className="text-gray-700">
|
<p className="text-gray-700">
|
||||||
Data structures and algorithms, Computer systems and organization,
|
Data structures and algo, Computer systems and organization, Software dev essentials
|
||||||
Software development essentials
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
|
|
|
||||||
|
|
@ -33,31 +33,31 @@ const Experience = () => {
|
||||||
{
|
{
|
||||||
title: "Front End Development Intern",
|
title: "Front End Development Intern",
|
||||||
company: "UNIKOVE TECHNOLOGIES",
|
company: "UNIKOVE TECHNOLOGIES",
|
||||||
date: "Mar 2022 - Apr 2022",
|
date: "June 2024 - August 2024",
|
||||||
description: [
|
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",
|
"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"
|
"Optimized front-end code by reducing JavaScript file sizes by 20%, improving website load time"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Backend Development Intern",
|
title: "Software Development Intern",
|
||||||
company: "Moglix",
|
company: "MOGLIX",
|
||||||
date: "May 2023 - Jul 2023",
|
date: "June 2023 - August 2023",
|
||||||
description: [
|
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",
|
"Developed ETL pipelines to streamline lead data processing, enabling faster outreach",
|
||||||
"Automated data extraction and transformation using various libraries in Python, reducing manual workload"
|
"Automated data extraction and transformation using various libraries in Python, reducing manual workload"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Mechanical Engineering Intern",
|
title: "Software Engineering Intern",
|
||||||
company: "SAN AUTO",
|
company: "SAN AUTO",
|
||||||
date: "Dec 2021 - Jan 2022",
|
date: "June 2022 - August 2022",
|
||||||
description: [
|
description: [
|
||||||
"Learned 3D modeling, operating AutoCAD, and managed small projects with professionals in the field",
|
"Implemented manufacturing data analysis tools using Excel and Python, improving reporting speed by 20%",
|
||||||
"Assisted head engineer with analyzing and improving manufacturing processes for aircraft components",
|
"Optimized manufacturing data storage using mySQL, improving query performance",
|
||||||
"Acquired skills in operating and maintaining CNC machines to ensure precision in manufacturing"
|
"Created React dashboards with real-time production metrics visualization, increasing ease of data access"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,9 @@ const Projects = () => {
|
||||||
{
|
{
|
||||||
title: "Guide To Austen",
|
title: "Guide To Austen",
|
||||||
description: [
|
description: [
|
||||||
"Developed an interactive web application offering a comprehensive guide to weddings, inspired by Jane Austen's works",
|
"Built a React/TypeScript app with Shadcn/UI and Tailwind, implementing lazy loading for 40% faster loads",
|
||||||
"Designed a dynamic timeline of wedding traditions using TypeScript and D3.js for smooth user interaction",
|
"Developed an interactive force-directed graph using D3.js for character network analysis with custom functionality",
|
||||||
"Built custom visualizations for character relationship analysis and wedding etiquettes, optimizing for performance with Vite"
|
"Implemented a modular component system with TypeScript interfaces achieving 95% type safety across the website"
|
||||||
],
|
],
|
||||||
github: "https://github.com/harivansh-afk/ENGL-Final-Project",
|
github: "https://github.com/harivansh-afk/ENGL-Final-Project",
|
||||||
demo: "https://guidetoausten.netlify.app/"
|
demo: "https://guidetoausten.netlify.app/"
|
||||||
|
|
|
||||||
|
|
@ -2,33 +2,33 @@ import React from 'react';
|
||||||
|
|
||||||
const skillCategories = [
|
const skillCategories = [
|
||||||
{
|
{
|
||||||
title: "Frontend Development",
|
title: "Programming Languages",
|
||||||
skills: [
|
skills: [
|
||||||
{ name: "React", level: 90 },
|
{ name: "Python", level: 90 },
|
||||||
{ name: "JavaScript", level: 85 },
|
{ name: "Java", level: 85 },
|
||||||
{ name: "TypeScript", level: 80 },
|
{ name: "TypeScript", level: 85 },
|
||||||
{ name: "HTML/CSS", level: 90 },
|
{ name: "HTML/CSS", level: 90 },
|
||||||
{ name: "Tailwind CSS", level: 85 },
|
{ name: "C/C++", level: 80 },
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Backend Development",
|
title: "Frameworks",
|
||||||
skills: [
|
skills: [
|
||||||
|
{ name: "React.js", level: 90 },
|
||||||
{ name: "Node.js", level: 85 },
|
{ name: "Node.js", level: 85 },
|
||||||
{ name: "Python", level: 80 },
|
{ name: "Express.js", level: 85 },
|
||||||
{ name: "Java", level: 75 },
|
{ name: "Vite", level: 80 },
|
||||||
{ name: "SQL", level: 80 },
|
{ name: "Next.js 14", level: 80 },
|
||||||
{ name: "MongoDB", level: 75 },
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Tools & Technologies",
|
title: "Tools & Databases",
|
||||||
skills: [
|
skills: [
|
||||||
{ name: "Git", level: 85 },
|
{ name: "Git/Github", level: 90 },
|
||||||
{ name: "Docker", level: 75 },
|
{ name: "PostgreSQL", level: 85 },
|
||||||
{ name: "AWS", level: 70 },
|
{ name: "MySQL", level: 85 },
|
||||||
{ name: "Linux", level: 80 },
|
{ name: "Supabase", level: 80 },
|
||||||
{ name: "REST APIs", level: 85 },
|
{ name: "Vercel", level: 80 },
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue