/** * Landing Section: Logo Cloud * * Responsive grid of partner/integration logos. */ import { ScrollReveal, SectionHeading, cn } from '../primitives' interface Logo { name: string imageUrl?: string } const LOGOS: Logo[] = [ { name: 'Acme Corp' }, { name: 'Globex' }, { name: 'Initech' }, { name: 'Umbrella' }, { name: 'Stark Ind.' }, { name: 'Wayne Ent.' }, ] export default function LogoCloudSection() { return (
{LOGOS.map(logo => (
{logo.imageUrl ? ( {logo.name} ) : ( {logo.name} )}
))}
) }