Skip to content

Commit

Permalink
Project completed
Browse files Browse the repository at this point in the history
  • Loading branch information
harshbhar0629 committed Jul 30, 2024
1 parent 7a47531 commit d362180
Showing 1 changed file with 311 additions and 0 deletions.
311 changes: 311 additions & 0 deletions src/constant/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,311 @@
/** @format */

import {
mobile,
backend,
creator,
web,
javascript,
html,
css,
reactjs,
redux,
tailwind,
nodejs,
mongodb,
git,
Airbnb,
shoppingCart,
blogContext,
leetcode,
gfg,
coding_ninjas,
snakeGame,
razorpayClone,
github2,
cpp,
phoneCall,
gmail,
linkedin,
} from "../assets";

export const navLinks = [
{
id: "about",
title: "About",
},
{
id: "work",
title: "Profiles",
},
{
id: "project",
title: "Projects",
},
{
id: "contact",
title: "Contact",
},
];

const services = [
{
title: "Data Structures and Algorithms",
icon: creator,
},
{
title: "MERN Stack",
icon: web,
},
{
title: "Frontend Developer",
icon: mobile,
},
{
title: "Backend Developer",
icon: backend,
},
{
title: "Git & GitHub",
icon: github2,
},
];

const technologies = [
{
name: "C++",
icon: cpp,
},
{
name: "JavaScript",
icon: javascript,
},

{
name: "React JS",
icon: reactjs,
},
{
name: "Redux Toolkit",
icon: redux,
},
{
name: "Node JS",
icon: nodejs,
},
{
name: "MongoDB",
icon: mongodb,
},

{
name: "Git",
icon: git,
},
{
name: "HTML",
icon: html,
},
{
name: "CSS",
icon: css,
},
{
name: "Tailwind CSS",
icon: tailwind,
},
];

const experiences = [
{
title: "harshbhar_0629",
company_name: "Leetcode",
icon: leetcode,
iconBg: "#383E56",
date: "900+ Questions",
points: [
" Achieved a contest rating of 1900+ and secured the Knight badge on LeetCode, ranking in the top 4.49% globally.",
"During problem-solving on Leetcode, I'm understand the crux of complex problems and how to approach Data Structures and Algorithms questions effectively. ",
],
link: "https://leetcode.com/u/harshbhar_0629/",
},
{
title: "harshbhogui",
company_name: "GeeksforGeeks",
icon: gfg,
iconBg: "#383E56",
date: "200+ Questions",
points: [
" Achieved a contest rating of 1800+ and secured the 4⭐ on GFG, overall rank 846.",
"During problem-solving on GeeksforGeeks, I'm understand the crux of complex problems and how to approach Data Structures and Algorithms questions effectively. ",
],
link: "https://www.geeksforgeeks.org/user/harshbhogui/",
},
{
title: "Harsh Bhardwaj",
company_name: "Code360 by Coding Ninjas",
icon: coding_ninjas,
iconBg: "#383E56",
date: "100+ Questions",
points: [
" Achieved a contest rating of 2500+ and secured the Master badge, ranking in the top 8% globally.",
"During problem-solving on Coding ninjas, I'm understand the crux of complex problems and how to approach Data Structures and Algorithms questions effectively.",
],
link: "https://www.naukri.com/code360/profile/4e6dc998-0250-4542-806e-41a267198e57",
},
];

const socials = [
{
id: 1,
name: "+91 88698 26279",
icon: phoneCall,
link: "/",
},

{
id: "2",
name: "[email protected]",
icon: gmail,
link: "mailto:[email protected]",
},
{
id: "3",
name: "Linkedin",
icon: linkedin,
link: "https://www.linkedin.com/in/harsh-bhardwaj-28491a249/",
},
{
id: "4",
name: "Github",
icon: github2,
link: "https://github.com/harshbhar0629/",
},
];

const projects = [
{
name: "Airbnb",
description:
"Developed a full-stack project with the MVC framework for managing property listings and bookings. Incorporated user authentication, database relationships, and RESTful APIs. Designed a UI similar to Airbnb’s, boosting user engagement by 30% through improved navigation and interactivity. Achieved a 40% reduction in code duplication with a modular and scalable architecture. Enhanced maintainability for future upgrades.",
tags: [
{
name: "Nodejs",
color: "blue-text-gradient",
},
{
name: "mongodb",
color: "green-text-gradient",
},
{
name: "Express",
color: "blue-text-gradient",
},

{
name: "bootstrap",
color: "pink-text-gradient",
},
],
image: Airbnb,
source_code_link:
"https://github.com/harshbhar0629/Major-project/tree/main/major-project01",
},
{
name: "Shopping-Cart",
description:
"Implemented React.js, Redux Toolkit, and React Router for smooth navigation and state management, improving responsiveness by 40%. Enhanced the homepage with real-time product images and descriptions, boosting user engagement by 25%. Enabled instant feedback on add/remove actions, reducing error rates by 30%. Added a cart feature allowing users to add and remove items, further enhancing the user experience.",
tags: [
{
name: "reactjs",
color: "blue-text-gradient",
},
{
name: "redux-toolkit",
color: "green-text-gradient",
},
{
name: "tailwindCSS",
color: "pink-text-gradient",
},
],
image: shoppingCart,
source_code_link:
"https://github.com/harshbhar0629/ReactJs/tree/main/React_Advance/shopping_cart",
},
{
name: "Blog-Context",
description:
"I've developed a dynamic blog application using React.js and the React Context API. It features interactive cards with details like title, author, date, description, and hashtags. Key features include clickable hashtags for related information, title-based search for posts, and efficient data management through centralized API fetching. This approach enhances performance and simplifies state management, making the app more scalable and maintainable.",
tags: [
{
name: "reactjs",
color: "blue-text-gradient",
},
{
name: "ApiContext",
color: "green-text-gradient",
},
{
name: "tailwindCSS",
color: "pink-text-gradient",
},
],
image: blogContext,
source_code_link:
"https://github.com/harshbhar0629/ReactJs/tree/main/React_Advance/blog-context",
},
{
name: "Snake Game",
description:
"I’ve completed a modern version of the classic Snake game using JavaScript. The game features a defined boundary, dynamic gameplay with randomly appearing food, and increasing speed with each meal. Smooth controls handle snake movement, collision detection, and scoring. Technologies used include JavaScript for game logic and HTML/CSS for interface design. This project was a great way to enhance my JavaScript skills and put a fresh spin on a childhood favorite.",
tags: [
{
name: "Javascript",
color: "blue-text-gradient",
},
{
name: "HTML",
color: "green-text-gradient",
},
{
name: "css",
color: "pink-text-gradient",
},
],
image: snakeGame,
source_code_link:
"https://github.com/harshbhar0629/JavaScript/tree/main/js/Snake_game",
},
{
name: "RazorPay-Clone",
description:
"I have completed a Razorpay UI clone project, enhancing my expertise in Tailwind CSS and CSS fundamentals. Tailwind CSS uses pre-defined utility classes for styling, allowing for quick and efficient design directly in HTML. This method is flexible, customizable, and ideal for creating responsive designs. The project presented challenges that deepened my understanding and refined my frontend development skills.",
tags: [
{
name: "HTML",
color: "green-text-gradient",
},
{
name: "css",
color: "pink-text-gradient",
},
{
name: "tailwindCSS",
color: "blue-text-gradient",
},
],
image: razorpayClone,
source_code_link:
"https://github.com/harshbhar0629/TailwindCss/tree/main/Tailwind/razor_pay_clone",
},
];

const personalInfo = {
MY_EMAIL: "[email protected]",
TEMPLATE_ID: "template_2bbruve",
SERVICE_ID: "service_4fhjky4",
PUBLIC_ID: "ORPIVrUB91WOaDgK-",
};

export { services, technologies, experiences, projects, socials, personalInfo };

0 comments on commit d362180

Please sign in to comment.