refactor: remove experience section and related data

Clean up unused experience section from UI and remove associated data
This commit is contained in:
joyzhao
2025-06-16 09:33:17 +08:00
parent 12631de53e
commit 20ae3de62c
4 changed files with 14 additions and 118 deletions

View File

@@ -30,7 +30,7 @@ export default function GlassHeader({ lang }: GlassHeaderProps) {
{/* Desktop Navigation */} {/* Desktop Navigation */}
<nav className="hidden md:flex items-center space-x-6 text-sm font-medium"> <nav className="hidden md:flex items-center space-x-6 text-sm font-medium">
{[ {[
{ key: 'nav.experience', icon: '💼 ', sectionId: 'experience' }, // { key: 'nav.experience', icon: '💼 ', sectionId: 'experience' },
{ key: 'nav.skills', icon: '🛠️ ', sectionId: 'skills' }, { key: 'nav.skills', icon: '🛠️ ', sectionId: 'skills' },
{ key: 'nav.projects', icon: '🚀 ', sectionId: 'projects' }, { key: 'nav.projects', icon: '🚀 ', sectionId: 'projects' },
].map( ].map(

View File

@@ -6,85 +6,33 @@ export const personalInfo = {
linkedin: "https://www.linkedin.com/in/rishikeshs/", linkedin: "https://www.linkedin.com/in/rishikeshs/",
}; };
export const workExperience = [
{
company: "work.chatbyte.company",
location: "work.chatbyte.location",
position: "work.chatbyte.position",
period: "work.chatbyte.period",
achievements: [
"work.chatbyte.achievements.0",
"work.chatbyte.achievements.1",
"work.chatbyte.achievements.2",
"work.chatbyte.achievements.3",
"work.chatbyte.achievements.4",
"work.chatbyte.achievements.5",
"work.chatbyte.achievements.6",
],
},
{
company: "work.devcrew.company",
location: "work.devcrew.location",
position: "work.devcrew.position",
period: "work.devcrew.period",
achievements: [
"work.devcrew.achievements.0",
"work.devcrew.achievements.1",
],
},
{
company: "work.phoenitags.company",
location: "work.phoenitags.location",
position: "work.phoenitags.position",
period: "work.phoenitags.period",
achievements: [
"work.phoenitags.achievements.0",
"work.phoenitags.achievements.1",
],
},
];
export const education = [
{
institution: "education.skcet.institution",
location: "education.skcet.location",
degree: "education.skcet.degree",
period: "education.skcet.period",
achievements: [
"education.skcet.achievements.0",
"education.skcet.achievements.1",
"education.skcet.achievements.2",
"education.skcet.achievements.3",
],
},
];
export const skills = { export const skills = {
programmingLanguages: [ programmingLanguages: [
"TypeScript", "TypeScript",
"JavaScript", "JavaScript",
"Python", "React",
"C++", "Vue",
"Java", "微信小程序",
"Solidity", "UniApp",
], ],
frontendDevelopment: [ frontendDevelopment: [
"Vue", "NuxtJs",
"Nuxtjs", "NextJs",
"React",
"Nextjs",
"React Native", "React Native",
"Shadcn UI", "Shadcn UI",
"PrimeVue", "PrimeVue",
"Naive-ui", "Naive-UI",
"Tailwind CSS", "Tailwind CSS",
], ],
backendDevelopment: ["Nodejs", "Expressjs", "Nestjs", "Fastify"], backendDevelopment: ["NodeJs", "ExpressJs", "NestJs", "FastifyJs", "HonoJs"],
databaseAndStorage: ["PostgreSQL", "MongoDB", "Drizzle (ORM)", "Mongoose", "Prisma"], databaseAndStorage: ["PostgreSQL", "MongoDB", "Drizzle (ORM)", "Mongoose", "Prisma"],
cloudAndDevOps: ["AWS", "Cloudflare", "Vercel"], cloudAndDevOps: ["AWS", "Cloudflare", "Vercel"],
toolsAndServices: [ toolsAndServices: [
"Zod", "Zod",
"betterAuth", "BetterAuth",
"Clerk (Auth)", "Clerk (Auth)",
"GitLab",
"CI/CD"
], ],
}; };
@@ -112,55 +60,3 @@ export const projects = [
], ],
}, },
]; ];
export const awards = [
{
name: "awards.ieeeYesist12.name",
issuer: "awards.ieeeYesist12.issuer",
date: "Sep 2022",
type: "awards.type.international",
position: "awards.ieeeYesist12.position",
},
{
name: "awards.prodigiCognizant.name",
issuer: "awards.prodigiCognizant.issuer",
date: "Feb 2023",
type: "awards.type.national",
position: "awards.prodigiCognizant.position",
},
{
name: "awards.ciscoThingqbator.name",
issuer: "awards.ciscoThingqbator.issuer",
date: "Jan 2023",
type: "awards.type.national",
position: "awards.ciscoThingqbator.position",
},
{
name: "awards.innovatorsDay.name",
issuer: "awards.innovatorsDay.issuer",
date: "Sep 2022",
type: "awards.type.national",
position: "awards.innovatorsDay.position",
},
{
name: "awards.kgHackfest22.name",
issuer: "awards.kgHackfest22.issuer",
date: "Sep 2022",
type: "awards.type.national",
position: "awards.kgHackfest22.position",
},
{
name: "awards.innohacks22.name",
issuer: "awards.innohacks22.issuer",
date: "May 2022",
type: "awards.type.national",
position: "awards.innohacks22.position",
},
{
name: "awards.hackAtSkcet.name",
issuer: "awards.hackAtSkcet.issuer",
date: "Feb 2022",
type: "awards.type.national",
position: "awards.hackAtSkcet.position",
},
];

View File

@@ -18,7 +18,7 @@ const pageTitle = t('page.home.title');
<GlassHeader lang={lang} client:only="react" /> <GlassHeader lang={lang} client:only="react" />
<main class="min-h-screen"> <main class="min-h-screen">
<HeroSection lang={lang} client:only="react" /> <HeroSection lang={lang} client:only="react" />
<ExperienceSection lang={lang} client:only="react" /> <!-- <ExperienceSection lang={lang} client:only="react" /> -->
<SkillsSection lang={lang} client:only="react" /> <SkillsSection lang={lang} client:only="react" />
<ProjectsSection lang={lang} client:only="react" /> <ProjectsSection lang={lang} client:only="react" />
</main> </main>

View File

@@ -19,7 +19,7 @@ const pageTitle = t('page.home.title');
<GlassHeader lang={lang} client:only="react" /> <GlassHeader lang={lang} client:only="react" />
<main class="min-h-screen"> <main class="min-h-screen">
<HeroSection lang={lang} client:only="react" /> <HeroSection lang={lang} client:only="react" />
<ExperienceSection lang={lang} client:only="react" /> <!-- <ExperienceSection lang={lang} client:only="react" /> -->
<SkillsSection lang={lang} client:only="react" /> <SkillsSection lang={lang} client:only="react" />
<ProjectsSection lang={lang} client:only="react" /> <ProjectsSection lang={lang} client:only="react" />
</main> </main>