@@ -12,15 +12,12 @@ const Resources = () => {
1212 < div className = "2xl:w-[90rem] xl:w-[75rem] w-[90%]" >
1313 < div className = "relative" >
1414 < Image src = "assets/resources_bg.svg" alt = "Background" className = "-z-50 absolute" fill />
15-
1615 < div className = "text-center my-10" >
17- < p className = "text-[#3977F8] font-game text-xl" > 03</ p >
1816 < h2 className = "font-bold text-6xl" > RESOURCES</ h2 >
1917 </ div >
2018
2119 < div className = "py-8 bg-no-repeat bg-center" >
2220 < div className = "grid grid-cols-4 1 gap-x-9 gap-y-5" >
23-
2421 { stage1 . map ( ( item : resourceCards ) => {
2522 return (
2623 < a
@@ -30,7 +27,13 @@ const Resources = () => {
3027 className = { `col-span-4 p-5 ${ boxStyling } flex` }
3128 >
3229 < div className = "flex justify-center align-middle items-center pl-2 pr-10" >
33- < Image src = { item . svg } alt = { item . alt } draggable = "false" width = { item . width } height = { item . height } />
30+ < Image
31+ src = { item . svg }
32+ alt = { item . alt }
33+ draggable = "false"
34+ width = { item . width }
35+ height = { item . height }
36+ />
3437 </ div >
3538 < div >
3639 < h2 className = "mt-5 text-3xl font-extrabold" > { item . title } </ h2 >
@@ -48,8 +51,14 @@ const Resources = () => {
4851 target = "_blank"
4952 className = { `xl:col-span-1 col-span-4 p-5 ${ boxStyling } ` }
5053 >
51- < div className = 'flex align-middle items-center pt-2 pb-4' >
52- < Image src = { item . svg } alt = { item . alt } draggable = "false" width = { item . width } height = { item . height } />
54+ < div className = "flex align-middle items-center pt-2 pb-4" >
55+ < Image
56+ src = { item . svg }
57+ alt = { item . alt }
58+ draggable = "false"
59+ width = { item . width }
60+ height = { item . height }
61+ />
5362 </ div >
5463 < div >
5564 < h2 className = "mt-5 text-3xl font-extrabold" > { item . title } </ h2 >
@@ -67,8 +76,15 @@ const Resources = () => {
6776 target = "_blank"
6877 className = { `md:col-span-2 col-span-4 p-5 ${ boxStyling } flex` }
6978 >
70- < div className = 'flex align-middle items-center pt-2 pb-4 pr-10' >
71- < Image src = { item . svg } alt = { item . alt } draggable = "false" width = { item . width } height = { item . height } className = 'rounded-md' />
79+ < div className = "flex align-middle items-center pt-2 pb-4 pr-10" >
80+ < Image
81+ src = { item . svg }
82+ alt = { item . alt }
83+ draggable = "false"
84+ width = { item . width }
85+ height = { item . height }
86+ className = "rounded-md"
87+ />
7288 </ div >
7389 < div >
7490 < h2 className = "mt-5 text-3xl font-extrabold" > { item . title } </ h2 >
0 commit comments