diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 6a38631..b0751e0 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -12,12 +12,14 @@ import SocialProofSection from './HomePage/sections/SocialProof'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import HowItWorksSection from './HomePage/sections/HowItWorks';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/HowItWorks.tsx b/src/pages/HomePage/sections/HowItWorks.tsx new file mode 100644 index 0000000..3a4c0f8 --- /dev/null +++ b/src/pages/HomePage/sections/HowItWorks.tsx @@ -0,0 +1,17 @@ +// Created by add_section_from_catalog (FeaturesDetailedSteps). + +import React from 'react'; +import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps'; + +export default function HowItWorksSection(): React.JSX.Element { + return ( +
+ +
+ ); +}