Skip to content

Commit e4669dc

Browse files
authored
Merge pull request #357 from pendulum-chain/chore/consistent-sections
make Why Vortex section more consistent
2 parents d4ccf78 + 3e7bef6 commit e4669dc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/TrustedBy/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const TrustedBy = () => {
4545
];
4646

4747
return (
48-
<section className="container mx-auto">
48+
<section className="container mt-12 mx-auto">
4949
<h1 className="mb-4 text-4xl text-center text-black">Trusted by</h1>
5050
<div className="flex flex-wrap items-center justify-center gap-y-4 gap-x-12">
5151
<ImageList images={trustedByImages} />

src/components/WhyVortex/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ const features: Feature[] = [
3333
const FeatureCard = ({ icon, title, description, subtext }: Feature) => (
3434
<div className="flex flex-col items-center text-center">
3535
<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>
3939
</div>
4040
);
4141

4242
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">
4646
{features.map((feature) => (
4747
<FeatureCard key={feature.title} {...feature} />
4848
))}

0 commit comments

Comments
 (0)