diff --git a/src/components/sections/pricing/PricingCenteredCards.tsx b/src/components/sections/pricing/PricingCenteredCards.tsx index 663df68..a5677fc 100644 --- a/src/components/sections/pricing/PricingCenteredCards.tsx +++ b/src/components/sections/pricing/PricingCenteredCards.tsx @@ -3,6 +3,7 @@ import Button from "@/components/ui/Button"; import TextAnimation from "@/components/ui/TextAnimation"; import GridOrCarousel from "@/components/ui/GridOrCarousel"; import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; type PricingPlan = { tag: string; @@ -52,16 +53,16 @@ const PricingCenteredCards = ({ {(primaryButton || secondaryButton) && (
{primaryButton &&
)} - {plans.map((plan) => ( -
- {plan.tag} + {plans.map((plan, index) => ( +
+ {plan.tag}
{plan.price} @@ -69,17 +70,17 @@ const PricingCenteredCards = ({
-
-
+
{plan.features.map((feature) => (
-
- +
+
{feature}
@@ -93,4 +94,4 @@ const PricingCenteredCards = ({ ); -export default PricingCenteredCards; +export default PricingCenteredCards; \ No newline at end of file