refactor(portfolio): update skills data and remove awards/education sections

- Update skills data with additional frameworks and tools
- Remove AwardsSection and EducationSection components
- Update project documentation to reflect changes
This commit is contained in:
joyzhao
2025-06-15 15:43:27 +08:00
parent 720686751a
commit 22799c9d8a
6 changed files with 38 additions and 175 deletions

View File

@@ -6,8 +6,6 @@ import HeroSection from "@/components/HeroSection";
import ExperienceSection from "@/components/ExperienceSection";
import SkillsSection from "@/components/SkillsSection";
import ProjectsSection from "@/components/ProjectsSection";
import AwardsSection from "@/components/AwardsSection";
import EducationSection from "@/components/EducationSection";
import Footer from "@/components/Footer";
const lang = getLangFromUrl(Astro.url);
@@ -20,8 +18,6 @@ const lang = getLangFromUrl(Astro.url);
<ExperienceSection lang={lang} client:only="react" />
<SkillsSection lang={lang} client:only="react" />
<ProjectsSection lang={lang} client:only="react" />
<AwardsSection lang={lang} client:only="react" />
<EducationSection lang={lang} client:only="react" />
</main>
<Footer lang={lang} client:only="react" />
</Layout>