@@ -7,24 +7,26 @@ export default function Partners({ partnerData }) {
7
7
< Head >
8
8
< title > Community Partners | WebXDAO</ title >
9
9
</ Head >
10
- < section className = "text-white text-center bg-[#00007f]" >
11
- < div className = "px-[3.3rem] py-20" >
12
- < h1 className = "font-bold text-5xl antialiased" > Community Partners</ h1 >
13
- < div className = "mt-6 text-xl font-light text-true-gray-500 antialiased" >
10
+ < section className = "py-8" >
11
+ < div className = "container max-w-5xl mx-auto" >
12
+ < h1 className = "w-full my-2 text-4xl font-bold leading-tight text-center text-white" >
13
+ Community Partners
14
+ </ h1 >
15
+ < div className = "w-full mt-6 text-lg md:text-xl font-light leading-tight text-center text-white" >
14
16
Our Valuable Community Partners
15
17
</ div >
16
18
</ div >
17
19
</ section >
18
20
19
21
< div className = "flex flex-col" >
20
- < div className = "bg-white pt-12 pb-12 flex-1" >
22
+ < div className = "pt-12 pb-12 flex-1" >
21
23
< div className = "container mx-auto" >
22
24
< div className = "flex flex-wrap gap-6" >
23
- < div className = "text-black grid grid-col-1 p-3 gap-y-3 md:grid md:grid-cols-2 md:gap-3 md:p-3" >
25
+ < div className = "text-black grid grid-col-1 p-3 gap-y-3 md:grid md:grid-cols-2 md:gap-6 md:p-3" >
24
26
{ partnerData . map ( ( { name, title, imgUrl, text } , index ) => (
25
27
< div
26
28
key = { name + index }
27
- className = "cursor-pointer bg-white flex-1 rounded-md shadow focus:outline-none focus:shadow-outline transform transition hover:shadow-lg hover:scale-105 hover:z-10 duration-300 ease-in-out p-4"
29
+ className = "cursor-pointer bg-white flex-1 shadow-2xl transform transition hover:shadow-lg hover:scale-105 hover:z-10 duration-300 ease-in-out p-4 bg-opacity-5 rounded-2xl justify-conten backdrop-filter backdrop-blur-md "
28
30
>
29
31
< div className = "grid grid-cols-3 items-center justify-start overflow-hidden" >
30
32
< div className = "relative col-span-1" >
@@ -35,8 +37,8 @@ export default function Partners({ partnerData }) {
35
37
/>
36
38
</ div >
37
39
< div className = "flex flex-col col-span-2 gap-y-3 pl-5" >
38
- < h4 className = "text-xl font-semibold" > { title } </ h4 >
39
- < p className = "text-gray-800 " > { text } </ p >
40
+ < h4 className = "text-xl text-gray-300 font-semibold" > { title } </ h4 >
41
+ < p className = "text-gray-500 " > { text } </ p >
40
42
</ div >
41
43
</ div >
42
44
</ div >
0 commit comments