function SectionContent()

in website/src/pages/Build-IA/events-calendar.js [38:57]


function SectionContent() {
  return (
    <section className={styles.features}>
      <div className="container">
        <h2 className='margin-top--md'>Events calendar</h2>
        <div className="row" style={{ paddingBottom: '1rem' }}>
          {ContentItemsB.map((props, idx) => (
            <ContentItem key={idx} {...props} />
          ))}
        </div>
        <h2 className='margin-top--md'>Previously on Build AI Apps and Agents</h2>
        <div className="row" style={{ paddingBottom: '1rem' }}>
          {ContentItemsC.map((props, idx) => (
            <ContentItem key={idx} {...props} />
          ))}
        </div>
      </div>
    </section>
  );
}