From abfbd4aa948b3d4f35278f968360d379407c18db Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 09:40:39 +0000 Subject: [PATCH 1/2] Bob AI: Add Trusted By section below Hero --- src/pages/HomePage.tsx | 4 ++- src/pages/HomePage/sections/TrustedBy.tsx | 34 +++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/TrustedBy.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index f14209c..b7f3041 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -13,10 +13,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import TrustedBySection from './HomePage/sections/TrustedBy';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/TrustedBy.tsx b/src/pages/HomePage/sections/TrustedBy.tsx new file mode 100644 index 0000000..9273d58 --- /dev/null +++ b/src/pages/HomePage/sections/TrustedBy.tsx @@ -0,0 +1,34 @@ +import ScrollReveal from '@/components/ui/ScrollReveal'; +import LoopCarousel from '@/components/ui/LoopCarousel'; + +export default function TrustedBy() { + const partners = [ + "Dhaka Medical College", + "Square Hospital", + "Apollo Hospitals", + "United Hospital", + "Popular Diagnostic Centre", + "Labaid Hospital" + ]; + + return ( +
+
+ +

+ Trusted by leading healthcare providers +

+ + {partners.map((partner, index) => ( +
+ + {partner} + +
+ ))} +
+
+
+
+ ); +} -- 2.49.1 From 7fbc9b46315ea46b3d4da8f30a292a360c3c496d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 09:41:13 +0000 Subject: [PATCH 2/2] Bob AI: fix build errors (attempt 1) --- src/pages/HomePage/sections/TrustedBy.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/HomePage/sections/TrustedBy.tsx b/src/pages/HomePage/sections/TrustedBy.tsx index 9273d58..803aa5a 100644 --- a/src/pages/HomePage/sections/TrustedBy.tsx +++ b/src/pages/HomePage/sections/TrustedBy.tsx @@ -12,15 +12,15 @@ export default function TrustedBy() { ]; return ( -
+
- +

Trusted by leading healthcare providers

{partners.map((partner, index) => ( -
+
{partner} @@ -31,4 +31,4 @@ export default function TrustedBy() {
); -} +} \ No newline at end of file -- 2.49.1