diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 8173aa2..e8d9608 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,10 +14,12 @@ import PartnersSection from './HomePage/sections/Partners'; import ContactSection from './HomePage/sections/Contact'; -import FaqSection from './HomePage/sections/Faq';export default function HomePage(): React.JSX.Element { +import FaqSection from './HomePage/sections/Faq'; +import LeadGenSection from './HomePage/sections/LeadGen';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/LeadGen.tsx b/src/pages/HomePage/sections/LeadGen.tsx new file mode 100644 index 0000000..f53feaf --- /dev/null +++ b/src/pages/HomePage/sections/LeadGen.tsx @@ -0,0 +1,19 @@ +// Created by add_section_from_catalog (ContactSplitForm). + +import React from 'react'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function LeadGenSection(): React.JSX.Element { + return ( +
+ +
+ ); +}