Merge version_3_1782034772632 into main #3
@@ -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 />
|
||||
|
||||
|
||||
34
src/pages/HomePage/sections/TrustedBy.tsx
Normal file
34
src/pages/HomePage/sections/TrustedBy.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user