@@ -66,25 +66,28 @@ export function ExperienceSection() {
6666 viewport = { { once : true } }
6767 transition = { { duration : 0.4 } }
6868 >
69- < div className = "border border-white/20 " >
69+ < div className = "overflow-hidden rounded-2xl border border-yellow-500/40 " >
7070 { experiences . map ( ( exp , i ) => (
7171 < div
7272 key = { i }
73- className = "px-6 py-5 border-b border-white/20 last:border-b-0"
73+ className = "border-b border-yellow-500/25 px-6 py-5 last:border-b-0"
7474 data-testid = { `row-experience-${ i } ` }
7575 >
76- < p className = "font-display font-bold text-md md:text-lg text-white mb-1 " >
76+ < p className = "mb-1 font-display text-base font-bold text-yellow-400 md:text-lg" >
7777 { exp . org }
7878 </ p >
79- < span className = "text-xs font-mono text-white/40 block mb-3" >
79+
80+ < span className = "mb-3 block text-xs font-mono text-yellow-500/70" >
8081 { exp . dateRange } · Advisor: { exp . advisor }
8182 </ span >
83+
8284 { exp . projects . map ( ( project , j ) => (
8385 < div key = { j } className = "mb-4 last:mb-0" >
84- < p className = "font-semibold text-sm text-white/90 mb-2 " >
86+ < p className = "mb-2 text-sm font-semibold text-yellow-300 " >
8587 Project: { project . name }
8688 </ p >
87- < ul className = "list-disc list-inside text-sm text-muted-foreground leading-relaxed space-y-1" >
89+
90+ < ul className = "list-disc list-inside space-y-1 text-sm leading-relaxed text-muted-foreground" >
8891 { project . bullets . map ( ( bullet , k ) => (
8992 < li key = { k } > { bullet } </ li >
9093 ) ) }
@@ -97,4 +100,4 @@ export function ExperienceSection() {
97100 </ motion . div >
98101 </ Section >
99102 ) ;
100- }
103+ }
0 commit comments