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..803aa5a --- /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} + +
+ ))} +
+
+
+
+ ); +} \ No newline at end of file