From 10de60098f9d230de8b09420825ac033a73b671a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 4 Jun 2026 12:10:22 +0000 Subject: [PATCH] Bob AI: Added Pricing section with highlighted cards --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/Pricing.tsx | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/Pricing.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 7ff9748..c0c98ea 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,7 +14,8 @@ import ContactSection from './HomePage/sections/Contact'; import HowItWorksSection from './HomePage/sections/HowItWorks'; -import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';export default function HomePage(): React.JSX.Element { +import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards'; +import PricingSection from './HomePage/sections/Pricing';export default function HomePage(): React.JSX.Element { return ( <> @@ -24,6 +25,7 @@ import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';expor + diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx new file mode 100644 index 0000000..6b36933 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,17 @@ +// Created by add_section_from_catalog (PricingHighlightedCards). + +import React from 'react'; +import PricingHighlightedCards from '@/components/sections/pricing/PricingHighlightedCards'; + +export default function PricingSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1