import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { industries } from "@/data/site-pages"; /** * Industries trust strip. * * Replaces the template's fabricated partner-logo carousel. Tenext does * not publish client logos here, so this presents the real industries it * serves. Swap in a genuine client-logo row once approved logos exist. */ export function PartnerLogosSection() { return (

Trusted to deliver across the industries we serve

{industries.map((industry) => ( {industry.title} ))}
); }