diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index b0751e0..7ff9748 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -13,7 +13,8 @@ import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -import HowItWorksSection from './HomePage/sections/HowItWorks';export default function HomePage(): React.JSX.Element { +import HowItWorksSection from './HomePage/sections/HowItWorks'; +import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';export default function HomePage(): React.JSX.Element { return ( <> @@ -25,6 +26,7 @@ import HowItWorksSection from './HomePage/sections/HowItWorks';export default fu + ); } diff --git a/src/pages/HomePage/sections/CaseStudiesCards.tsx b/src/pages/HomePage/sections/CaseStudiesCards.tsx new file mode 100644 index 0000000..fb57063 --- /dev/null +++ b/src/pages/HomePage/sections/CaseStudiesCards.tsx @@ -0,0 +1,17 @@ +// Created by add_section_from_catalog (BlogSimpleCards). + +import React from 'react'; +import BlogSimpleCards from '@/components/sections/blog/BlogSimpleCards'; + +export default function CaseStudiesCardsSection(): React.JSX.Element { + return ( +
+ +
+ ); +}