Merge version_3_1782034772632 into main #3

Merged
bender merged 2 commits from version_3_1782034772632 into main 2026-06-21 09:41:46 +00:00
2 changed files with 37 additions and 1 deletions

View File

@@ -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 (
<>
<HeroSection />
<TrustedBySection />
<AboutSection />

View File

@@ -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 (
<section data-webild-section="trusted-by" id="trusted-by" className="relative w-full bg-background border-b border-foreground/5">
<div className="w-content-width mx-auto">
<ScrollReveal variant="fade">
<p className="text-center text-sm font-medium text-accent mb-8 uppercase tracking-wider">
Trusted by leading healthcare providers
</p>
<LoopCarousel>
{partners.map((partner, index) => (
<div key={index} className="flex items-center justify-center whitespace-nowrap px-8">
<span className="text-xl md:text-2xl font-bold text-foreground/40 hover:text-foreground/80 transition-colors duration-300">
{partner}
</span>
</div>
))}
</LoopCarousel>
</ScrollReveal>
</div>
</section>
);
}