@@ -12,15 +12,12 @@ const Resources = () => {
12
12
< div className = "2xl:w-[90rem] xl:w-[75rem] w-[90%]" >
13
13
< div className = "relative" >
14
14
< Image src = "assets/resources_bg.svg" alt = "Background" className = "-z-50 absolute" fill />
15
-
16
15
< div className = "text-center my-10" >
17
- < p className = "text-[#3977F8] font-game text-xl" > 03</ p >
18
16
< h2 className = "font-bold text-6xl" > RESOURCES</ h2 >
19
17
</ div >
20
18
21
19
< div className = "py-8 bg-no-repeat bg-center" >
22
20
< div className = "grid grid-cols-4 1 gap-x-9 gap-y-5" >
23
-
24
21
{ stage1 . map ( ( item : resourceCards ) => {
25
22
return (
26
23
< a
@@ -30,7 +27,13 @@ const Resources = () => {
30
27
className = { `col-span-4 p-5 ${ boxStyling } flex` }
31
28
>
32
29
< 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
+ />
34
37
</ div >
35
38
< div >
36
39
< h2 className = "mt-5 text-3xl font-extrabold" > { item . title } </ h2 >
@@ -48,8 +51,14 @@ const Resources = () => {
48
51
target = "_blank"
49
52
className = { `xl:col-span-1 col-span-4 p-5 ${ boxStyling } ` }
50
53
>
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
+ />
53
62
</ div >
54
63
< div >
55
64
< h2 className = "mt-5 text-3xl font-extrabold" > { item . title } </ h2 >
@@ -67,8 +76,15 @@ const Resources = () => {
67
76
target = "_blank"
68
77
className = { `md:col-span-2 col-span-4 p-5 ${ boxStyling } flex` }
69
78
>
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
+ />
72
88
</ div >
73
89
< div >
74
90
< h2 className = "mt-5 text-3xl font-extrabold" > { item . title } </ h2 >
0 commit comments