From 6fe3774a3dc8b2c5cd7288b70292daf4a80a42e4 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Sun, 26 Apr 2026 23:35:42 +0300 Subject: [PATCH] Bob AI: [SECTION ADD OPERATION] You must create a COMPLETELY NEW sec --- src/App.tsx | 55 ++++++++++++++++--- .../sections/pricing/PricingSimpleCards.tsx | 12 +++- 2 files changed, 56 insertions(+), 11 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index ab299b5..64e20a6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,15 +6,52 @@ import AboutPage from "@/pages/AboutPage"; import ContactPage from "@/pages/ContactPage"; import TeamTestimonialsPage from "@/pages/TeamTestimonialsPage"; import PricingPage from "@/pages/PricingPage"; +import PricingSimpleCards from "@/components/sections/pricing/PricingSimpleCards"; + export default function App() { return ( - - } /> - } /> - } /> - } /> - } /> - } /> - + <> + + } /> + } /> + } /> + } /> + } /> + } /> + +
+ +
+ ); -} +} \ No newline at end of file diff --git a/src/components/sections/pricing/PricingSimpleCards.tsx b/src/components/sections/pricing/PricingSimpleCards.tsx index eef1dc7..2a2f244 100644 --- a/src/components/sections/pricing/PricingSimpleCards.tsx +++ b/src/components/sections/pricing/PricingSimpleCards.tsx @@ -9,6 +9,8 @@ type PricingPlan = { price: string; description: string; features: string[]; + buttonText?: string; + buttonHref?: string; }; const PricingSimpleCards = ({ @@ -71,7 +73,7 @@ const PricingSimpleCards = ({
-
+
{plan.features.map((feature) => (
@@ -81,6 +83,12 @@ const PricingSimpleCards = ({
))}
+ + {(plan.buttonText || plan.buttonHref) && ( +
+
+ )}
))} @@ -89,4 +97,4 @@ const PricingSimpleCards = ({ ); -export default PricingSimpleCards; +export default PricingSimpleCards; \ No newline at end of file