File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export const TrustedBy = () => {
45
45
] ;
46
46
47
47
return (
48
- < section className = "container mx-auto" >
48
+ < section className = "container mt-12 mx-auto" >
49
49
< h1 className = "mb-4 text-4xl text-center text-black" > Trusted by</ h1 >
50
50
< div className = "flex flex-wrap items-center justify-center gap-y-4 gap-x-12" >
51
51
< ImageList images = { trustedByImages } />
Original file line number Diff line number Diff line change @@ -33,16 +33,16 @@ const features: Feature[] = [
33
33
const FeatureCard = ( { icon, title, description, subtext } : Feature ) => (
34
34
< div className = "flex flex-col items-center text-center" >
35
35
< img src = { icon } alt = { title } className = "w-[100px] h-[100px] mb-4" />
36
- < h3 className = "mb-4 text-2xl font-extrabold text-blue-900" > { title } </ h3 >
37
- < p className = "mb-2 text-lg text- black" > { description } </ p >
38
- < p className = "text-xl text- gray-600 text-pink-600" > { subtext } </ p >
36
+ < h3 className = "mb-4 text-xl font-bold text-blue-900" > { title } </ h3 >
37
+ < p className = "mb-2 text-black" > { description } </ p >
38
+ < p className = "text-gray-600 text-pink-600" > { subtext } </ p >
39
39
</ div >
40
40
) ;
41
41
42
42
export const WhyVortex = ( ) => (
43
- < section className = "container py-12 mx-auto mt-12 " >
44
- < h2 className = "mb-8 text-4xl font-bold text-center text-blue-900 " > Why Vortex?</ h2 >
45
- < div className = "grid grid-cols-1 gap-x-36 gap-y-8 md:grid-cols-3" >
43
+ < section className = "container py-12 mx-auto mt-6 " >
44
+ < h1 className = "mb-6 text-4xl text-center text-black " > Why Vortex?</ h1 >
45
+ < div className = "grid grid-cols-1 gap-x-20 gap-y-8 md:grid-cols-3" >
46
46
{ features . map ( ( feature ) => (
47
47
< FeatureCard key = { feature . title } { ...feature } />
48
48
) ) }
You can’t perform that action at this time.
0 commit comments