diff --git a/src/components/Education.jsx b/src/components/Education.jsx index 9131e08..0dc078e 100644 --- a/src/components/Education.jsx +++ b/src/components/Education.jsx @@ -17,7 +17,7 @@ const Education = () => { > Education - + {
Expected May 2026
- GPA: 3.7/4.0 + Cumulative GPA: 3.55/4.0
Relevant Coursework:

- Data structures and algorithms, Computer systems and organization, - Software development essentials + Data structures and algo, Computer systems and organization, Software dev essentials

@@ -47,4 +46,4 @@ const Education = () => { ); }; -export default Education; \ No newline at end of file +export default Education; diff --git a/src/components/Experience.jsx b/src/components/Experience.jsx index 36c6b63..ca6619a 100644 --- a/src/components/Experience.jsx +++ b/src/components/Experience.jsx @@ -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; \ No newline at end of file +export default Experience; diff --git a/src/components/Projects.jsx b/src/components/Projects.jsx index dde784f..f51bd15 100644 --- a/src/components/Projects.jsx +++ b/src/components/Projects.jsx @@ -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/" diff --git a/src/components/Skills.jsx b/src/components/Skills.jsx index e869f7e..ad65bfd 100644 --- a/src/components/Skills.jsx +++ b/src/components/Skills.jsx @@ -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 }, ] } ];