diff --git a/src/components/sections/Pricing.tsx b/src/components/sections/Pricing.tsx index fb85d32..6938f36 100644 --- a/src/components/sections/Pricing.tsx +++ b/src/components/sections/Pricing.tsx @@ -1,7 +1,7 @@ "use client"; import { useState } from "react"; -import { CreditCard, Building2, ScrollText } from "lucide-react"; +import { CreditCard, Building2, ScrollText, Crown, Sparkles } from "lucide-react"; import { siteContent } from "@/data/content"; import { SectionHeading } from "@/components/ui/SectionHeading"; import { Reveal } from "@/components/ui/Reveal"; @@ -18,6 +18,10 @@ export function Pricing() { { id: "rules", label: "Правила", icon: }, ]; + // Split items: regular + unlimited (last item) + const regularItems = pricing.items.slice(0, -1); + const unlimitedItem = pricing.items[pricing.items.length - 1]; + return (
@@ -33,7 +37,7 @@ export function Pricing() {