From 8c309f61c15dfd21b3a1e2fb48c1932930adc85f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 8 Jun 2026 14:09:31 +0000 Subject: [PATCH] Bob AI: Added a team section using TeamProfileCards. --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/Team.tsx | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/Team.tsx 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 ( +
+ +
+ ); +} -- 2.49.1