File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
22import Layout from " @/layouts/Layout.astro" ;
3- import { profile } from " @/settings" ;
4- import BetterIcon from " @/components/ui/BetterIcon.astro" ;
53import SkillTags from " @/components/ui/SkillTags.astro" ;
6- import { RESEARCH_ICONS } from " @/data/researchIcons" ;
74import { skills , projects } from " @/data/cv" ;
8-
9- const { research_areas } = profile ;
105---
116
127<Layout title =" Research | Rajarshi Roy" >
@@ -40,35 +35,6 @@ const { research_areas } = profile;
4035 }
4136 </div >
4237
43- <h2 class =" text-2xl font-bold mb-6" >Research Areas</h2 >
44- <div class =" grid gap-8 mb-12" >
45- {
46- research_areas .map ((area ) => (
47- <div class = " flex gap-6 items-start" >
48- <BetterIcon >
49- <svg
50- xmlns = " http://www.w3.org/2000/svg"
51- viewBox = " 0 0 24 24"
52- fill = " none"
53- stroke-width = " 2"
54- class = " size-6 stroke-accent"
55- >
56- <path
57- stroke-linecap = " round"
58- stroke-linejoin = " round"
59- d = { RESEARCH_ICONS [area .field as keyof typeof RESEARCH_ICONS ]?.path || RESEARCH_ICONS [' computer-science' ].path }
60- />
61- </svg >
62- </BetterIcon >
63- <div >
64- <h3 class = " text-xl font-semibold mb-2" >{ area .title } </h3 >
65- <p class = " text-base" >{ area .description } </p >
66- </div >
67- </div >
68- ))
69- }
70- </div >
71-
7238 <div class =" not-prose" >
7339 <SkillTags listTitle =" Technical Skills" skills ={ skills } />
7440 </div >
You can’t perform that action at this time.
0 commit comments