initial commit

This commit is contained in:
Harivansh Rathi 2025-01-03 15:55:01 +05:30
commit fb5b992b17
35 changed files with 11573 additions and 0 deletions

170
src/content_option.js Normal file
View file

@ -0,0 +1,170 @@
const logotext = "HARIVANSH";
const meta = {
title: "Harivansh Rathi",
description: "Im Harivansh Rathi, a Computer Science student at the University of Virginia.",
};
const introdata = {
title: "Hi, I'm Harivansh Rathi",
animated: {
first: "Full Stack Developer",
second: "Software Engineer",
third: "Tech Enthusiast",
},
description: "I'm passionate about building exceptional digital experiences that make a difference. With expertise in both frontend and backend development, I create scalable and efficient solutions that solve real-world problems.",
your_img_url: "https://i.imgur.com/0y00000.png",
};
const dataabout = {
title: "About Me",
aboutme: "I am a Computer Science student at the University of Virginia, with a passion for software development and AI. I enjoy building scalable applications and exploring the latest advancements in technology. I am always eager to learn and contribute to innovative projects.",
};
const worktimeline = [{
jobtitle: "Front End Development Intern",
where: "UNIKOVE TECHNOLOGIES",
date: "June 2024 - August 2024",
},
{
jobtitle: "Software Development Intern",
where: "MOGLIX",
date: "June 2023 - August 2023",
},
{
jobtitle: "Software Engineering Intern",
where: "SAN AUTO",
date: "June 2022 - August 2022",
},
];
const skills = [{
name: "Python",
value: 90,
},
{
name: "Java",
value: 85,
},
{
name: "Typescript",
value: 80,
},
{
name: "HTML",
value: 90,
},
{
name: "CSS/Tailwind",
value: 85,
},
{
name: "C/C++",
value: 70,
},
{
name: "React.js",
value: 80,
},
{
name: "Node.js",
value: 75,
},
{
name: "Express.js",
value: 75,
},
{
name: "Vite",
value: 80,
},
{
name: "Next.js 14",
value: 70,
},
{
name: "Git/Github",
value: 90,
},
{
name: "PostgreSQL",
value: 80,
},
{
name: "MySQL",
value: 80,
},
{
name: "Supabase",
value: 75,
},
{
name: "Vercel",
value: 80,
},
{
name: "OAuth 2.0",
value: 70,
},
];
const services = [{
title: "Front End Development",
description: "Utilizing JavaScript and React.js to refine UX design elements, ensuring seamless functionality and integration.",
},
{
title: "Back End Development",
description: "Developing robust and scalable backend solutions using Node.js, Express.js, and SQL databases.",
},
{
title: "AI Application Development",
description: "Building AI-powered applications with a focus on document retrieval and data analysis.",
},
];
const dataportfolio = [{
img: "https://picsum.photos/400/300/?grayscale",
description: "Built a React/TypeScript RAG AI chat application with n8n, achieving 95% query response accuracy",
link: "https://github.com/harivansh-afk/RAG-ui",
},
{
img: "https://picsum.photos/400/300/?grayscale",
description: "Co-authored a research paper on cryptocurrency market predictability with a PHD student at CMU",
link: "https://github.com/harivansh-afk/CryptoCurrencyPredictionLSTM",
},
{
img: "https://picsum.photos/400/300/?grayscale",
description: "Built a full-stack habit tracker web app with React, TypeScript, and Supabase, boosting scalability by 25%",
link: "https://github.com/harivansh-afk/Habit-Tracker",
},
{
img: "https://picsum.photos/400/300/?grayscale",
description: "Built a React/TypeScript app with Shadcn/UI and Tailwind, implementing lazy loading for 40% faster loads",
link: "https://github.com/harivansh-afk/ENGL-Final-Project",
},
];
const contactConfig = {
YOUR_EMAIL: "zng2gc@virginia.edu",
YOUR_FONE: "+1 434-310-1227",
description: "I am currently based in Charlottesville, VA. Feel free to reach out to me for any opportunities or collaborations.",
YOUR_SERVICE_ID: "service_id",
YOUR_TEMPLATE_ID: "template_id",
YOUR_USER_ID: "user_id",
};
const socialprofils = {
github: "https://github.com/harivansh-afk",
linkedin: "https://linkedin.com/in/harivansh-rathi",
resume: "https://docs.google.com/document/d/1TKbtqYinjRNFZiZNbxEwRTz5QDiZ5mOk/edit?usp=sharing&ouid=104313709347999918268&rtpof=true&sd=true"
};
export {
meta,
dataabout,
dataportfolio,
worktimeline,
skills,
services,
introdata,
contactConfig,
socialprofils,
logotext,
};