File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22import Layout from " @/layouts/Layout.astro" ;
33import { profile } from " @/settings" ;
44import BetterIcon from " @/components/ui/BetterIcon.astro" ;
5+ import SkillTags from " @/components/ui/SkillTags.astro" ;
56import { RESEARCH_ICONS } from " @/data/researchIcons" ;
67import { skills , projects } from " @/data/cv" ;
78
@@ -68,16 +69,8 @@ const { research_areas } = profile;
6869 }
6970 </div >
7071
71- <h2 class =" text-2xl font-bold mb-6" >Technical Skills</h2 >
72- <div class =" grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4 mb-12 not-prose" >
73- {
74- skills .map ((skill ) => (
75- <div class = " border border-base-300 rounded-xl p-4 bg-base-100" >
76- <h3 class = " font-semibold text-sm mb-2" >{ skill .title } </h3 >
77- <p class = " text-sm text-base-content/70" >{ skill .description } </p >
78- </div >
79- ))
80- }
72+ <div class =" not-prose" >
73+ <SkillTags listTitle =" Technical Skills" skills ={ skills } />
8174 </div >
8275
8376 </div >
You can’t perform that action at this time.
0 commit comments