File tree Expand file tree Collapse file tree 2 files changed +18
-9
lines changed
Expand file tree Collapse file tree 2 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,35 @@ export default function Challenges() {
1010 ]
1111
1212 return (
13- < section className = "py-8 px-4 sm:px-6 lg:px-8" >
13+ < section className = "py-8 px-4 sm:px-6 lg:px-8" >
1414 < div className = "max-w-7xl mx-auto" >
15- < h2 className = "text-3xl font-bold mb-8 text-center text-[#009563]" > Barriers of Adoption</ h2 >
15+ < h2 className = "text-3xl font-bold mb-8 text-center text-[#009563]" >
16+ Barriers of Adoption
17+ </ h2 >
1618 < div className = "flex flex-col gap-8" >
1719 < div className = "grid grid-cols-1 md:grid-cols-3 gap-8" >
1820 { challenges . slice ( 0 , 3 ) . map ( ( challenge , index ) => (
19- < div key = { index } className = "flex flex-col items-center text-center" >
21+ < div
22+ key = { index }
23+ className = "flex flex-col items-center text-center"
24+ >
2025 < challenge . icon className = "h-12 w-12 text-[#fcac04] mb-4" />
21- < p className = "text-lg font-semibold text-[#1D1D1D]" > { challenge . text } </ p >
26+ < p className = "text-lg font-semibold text-[#1D1D1D]" >
27+ { challenge . text }
28+ </ p >
2229 </ div >
2330 ) ) }
2431 </ div >
2532 < div className = "grid grid-cols-1 md:grid-cols-2 gap-8 md:px-24" >
2633 { challenges . slice ( 3 ) . map ( ( challenge , index ) => (
27- < div key = { index } className = "flex flex-col items-center text-center" >
34+ < div
35+ key = { index }
36+ className = "flex flex-col items-center text-center"
37+ >
2838 < challenge . icon className = "h-12 w-12 text-[#fcac04] mb-4" />
29- < p className = "text-lg font-semibold text-[#1D1D1D]" > { challenge . text } </ p >
39+ < p className = "text-lg font-semibold text-[#1D1D1D]" >
40+ { challenge . text }
41+ </ p >
3042 </ div >
3143 ) ) }
3244 </ div >
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ export default function Footer() {
2828 </ div >
2929 </ div >
3030
31-
32-
33-
3431 < div className = "flex justify-center mb-8" >
3532 < nav className = "flex space-x-6" >
3633 < Link href = "#" className = "text-[#01371C] hover:text-[#0FD460]" >
You can’t perform that action at this time.
0 commit comments