Skip to content

Commit 73b802a

Browse files
authored
Replace List component with SkillTags component
1 parent fd07695 commit 73b802a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/pages/research.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { profile } from "@/settings";
44
import BetterIcon from "@/components/ui/BetterIcon.astro";
55
import List from "@/components/ui/List.astro";
66
import { skills } from "../data/cv";
7+
import SkillTags from "@/components/ui/SkillTags.astro";
78
import {RESEARCH_ICONS} from "@/data/researchIcons";
89
910
const { research_areas } = profile;
@@ -69,7 +70,7 @@ const { research_areas } = profile;
6970
{
7071
skills.length > 0 && (
7172
<section class="mt-12">
72-
<List listTitle="Skills & Tools" listItems={skills} />
73+
<SkillTags listTitle="Skills & Tools" skills={skills} />
7374
</section>
7475
)
7576
}

0 commit comments

Comments
 (0)