Skip to content

Commit d01322a

Browse files
committed
refactor: comment out skill section
1 parent 7db6779 commit d01322a

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

src/components/sections/experience/index.tsx

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,41 @@ import { SITE_CONFIG } from "@constants";
22
import { useTranslations } from "next-intl";
33
import { type FC } from "react";
44

5-
import LegendStar from "@components/sections/experience/legend-star";
6-
import SkillCategory from "@components/sections/experience/skill-category";
5+
// import LegendStar from "@components/sections/experience/legend-star";
6+
// import SkillCategory from "@components/sections/experience/skill-category";
77
import { SkillContextProvider } from "@components/sections/experience/skill-context";
88
import ExperienceTimeline from "@components/sections/experience/timeline";
99
import Section from "@components/sections/section";
10-
import { Accordion } from "@components/ui/accordion";
1110

12-
import type { Skill } from "@constants";
11+
// import { Accordion } from "@components/ui/accordion";
12+
13+
// import type { Skill } from "@constants";
1314

1415
const ExperienceSection: FC<{ locale: string }> = ({ locale }) => {
1516
const t = useTranslations();
1617

17-
const skillCategories: { id: string; name: string; skills: Skill[] }[] = [
18-
{
19-
id: "languages",
20-
name: t("Experience.Skills.languages"),
21-
skills: SITE_CONFIG.experience.languages,
22-
},
23-
{
24-
id: "libs",
25-
name: t("Experience.Skills.libs"),
26-
skills: SITE_CONFIG.experience.libs,
27-
},
28-
{
29-
id: "tools",
30-
name: t("Experience.Skills.tools"),
31-
skills: SITE_CONFIG.experience.tools,
32-
},
33-
{
34-
id: "os",
35-
name: t("Experience.Skills.os"),
36-
skills: SITE_CONFIG.experience.os,
37-
},
38-
];
18+
// const skillCategories: { id: string; name: string; skills: Skill[] }[] = [
19+
// {
20+
// id: "languages",
21+
// name: t("Experience.Skills.languages"),
22+
// skills: SITE_CONFIG.experience.languages,
23+
// },
24+
// {
25+
// id: "libs",
26+
// name: t("Experience.Skills.libs"),
27+
// skills: SITE_CONFIG.experience.libs,
28+
// },
29+
// {
30+
// id: "tools",
31+
// name: t("Experience.Skills.tools"),
32+
// skills: SITE_CONFIG.experience.tools,
33+
// },
34+
// {
35+
// id: "os",
36+
// name: t("Experience.Skills.os"),
37+
// skills: SITE_CONFIG.experience.os,
38+
// },
39+
// ];
3940

4041
return (
4142
<Section heading={t("Routes.experience")} sectionID="experience">

0 commit comments

Comments
 (0)