@@ -8,7 +8,7 @@ const FeaturedContributor = ({ contributor, role, description, badge }) => {
88 whileInView = { { opacity : 1 , scale : 1 } }
99 viewport = { { once : true } }
1010 transition = { { duration : 0.6 } }
11- className = "group relative p-8 rounded-[40px] bg-white/10 dark:bg-gray-900/60 backdrop-blur-2xl border border-white/20 dark:border-gray-800/80 shadow-2xl overflow-hidden"
11+ className = "group relative p-8 rounded-[40px] bg-white/90 dark:bg-gray-900/60 backdrop-blur-2xl border border-slate-200 dark:border-gray-800/80 shadow-2xl overflow-hidden"
1212 >
1313 { /* Animated Gradient Background */ }
1414 < div className = "absolute -inset-[100%] bg-[conic-gradient(from_0deg,transparent_0deg,transparent_150deg,#06b6d4_180deg,transparent_210deg,transparent_360deg)] animate-spin-slow opacity-10 group-hover:opacity-30 transition-opacity duration-700" />
@@ -18,7 +18,7 @@ const FeaturedContributor = ({ contributor, role, description, badge }) => {
1818 { /* Avatar with Animated Gradient Border */ }
1919 < div className = "relative w-32 h-32 mb-6" >
2020 < div className = "absolute inset-[-4px] bg-gradient-to-r from-cyan-400 via-blue-500 to-purple-600 rounded-full animate-spin-slow blur-sm opacity-70 group-hover:blur-md transition-all duration-500" />
21- < div className = "absolute inset-0 bg-gray-900 rounded-full z-0" />
21+ < div className = "absolute inset-0 bg-slate-100 dark:bg- gray-900 rounded-full z-0" />
2222 < img
2323 src = { `https://github.com/${ contributor } .png` }
2424 alt = { contributor }
@@ -35,13 +35,13 @@ const FeaturedContributor = ({ contributor, role, description, badge }) => {
3535 < span className = "px-4 py-1.5 rounded-full bg-cyan-500/20 border border-cyan-500/30 text-cyan-400 text-xs font-bold uppercase tracking-widest mb-3 block" >
3636 { role }
3737 </ span >
38- < h3 className = "text-2xl font-black text-white mb-1 tracking-tight" >
38+ < h3 className = "text-2xl font-black text-slate-900 dark:text- white mb-1 tracking-tight" >
3939 { contributor }
4040 </ h3 >
4141 < p className = "text-cyan-400/80 text-sm font-medium" > @{ contributor } </ p >
4242 </ div >
4343
44- < p className = "text-gray-400 text-sm leading-relaxed mb-8 max-w-[250px]" >
44+ < p className = "text-slate-600 dark:text- gray-400 text-sm leading-relaxed mb-8 max-w-[250px]" >
4545 { description }
4646 </ p >
4747
0 commit comments