Skip to content

Commit

Permalink
make Why Vortex section more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharqiewicz committed Jan 8, 2025
1 parent ed95ba2 commit 020116e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/WhyVortex/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ const features: Feature[] = [
const FeatureCard = ({ icon, title, description, subtext }: Feature) => (
<div className="flex flex-col items-center text-center">
<img src={icon} alt={title} className="w-[100px] h-[100px] mb-4" />
<h3 className="mb-4 text-2xl font-extrabold text-blue-900">{title}</h3>
<p className="mb-2 text-lg text-black">{description}</p>
<p className="text-xl text-gray-600 text-pink-600">{subtext}</p>
<h3 className="mb-4 text-xl font-bold text-blue-900">{title}</h3>
<p className="mb-2 text-black">{description}</p>
<p className="text-gray-600 text-pink-600">{subtext}</p>
</div>
);

export const WhyVortex = () => (
<section className="container py-12 mx-auto mt-12">
<h2 className="mb-8 text-4xl font-bold text-center text-blue-900">Why Vortex?</h2>
<div className="grid grid-cols-1 gap-x-36 gap-y-8 md:grid-cols-3">
<h1 className="mb-6 text-4xl text-center text-black">Why Vortex?</h1>
<div className="grid grid-cols-1 gap-x-20 gap-y-8 md:grid-cols-3">
{features.map((feature) => (
<FeatureCard key={feature.title} {...feature} />
))}
Expand Down

0 comments on commit 020116e

Please sign in to comment.