Bob AI: Add Trusted By logo bar below hero

This commit is contained in:
kudinDmitriyUp
2026-06-29 13:20:03 +00:00
parent 04d22f9a7b
commit ba466880b0
2 changed files with 30 additions and 1 deletions

View File

@@ -14,10 +14,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials';
import PricingSection from './HomePage/sections/Pricing';
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,27 @@
export default function TrustedBySection() {
const logos = [
"SABIC",
"Aramco",
"Ma'aden",
"Tasnee",
"Zamil Industrial"
];
return (
<section id="trusted-by" data-webild-section="trusted-by" className="py-16 bg-background">
<div className="w-content-width mx-auto flex flex-col items-center gap-8">
<p className="text-sm font-medium text-accent uppercase tracking-wider text-center">
Trusted by leading factories across Saudi Arabia
</p>
<div className="flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-60">
{logos.map((logo, index) => (
<div key={index} className="text-xl md:text-2xl font-bold text-foreground font-sans tracking-tight">
{logo}
</div>
))}
</div>
</div>
</section>
);
}