Bob AI: fix build errors (attempt 1)

This commit is contained in:
kudinDmitriyUp
2026-06-21 09:41:13 +00:00
parent abfbd4aa94
commit 7fbc9b4631

View File

@@ -12,15 +12,15 @@ export default function TrustedBy() {
];
return (
<section data-webild-section="trusted-by" id="trusted-by" className="relative w-full py-12 bg-background border-b border-foreground/5">
<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>
<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 md:px-16">
<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>
@@ -31,4 +31,4 @@ export default function TrustedBy() {
</div>
</section>
);
}
}