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 ( +
+ +
+ ); +}