diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index e382465..e308988 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,13 +14,15 @@ import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -{/* webild-stub @2026-06-08T14:03:44.754Z: add buttons to each solution so that users can learn more */} + +import TeamSection from './HomePage/sections/Team';{/* webild-stub @2026-06-08T14:03:44.754Z: add buttons to each solution so that users can learn more */} export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx new file mode 100644 index 0000000..7fce0a5 --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,17 @@ +// Created by add_section_from_catalog (TeamProfileCards). + +import React from 'react'; +import TeamProfileCards from '@/components/sections/team/TeamProfileCards'; + +export default function TeamSection(): React.JSX.Element { + return ( +
+ +
+ ); +}