Flip Cards

Interactive flip card components with front and back content, icons, and CTAs. The flip cards are rendered in a flex container with responsive layout and smooth flip animations.

Configuration

- sectionType: flip-cards
  containerTag: aside
  #more settings

  cards:
    - front:
        icon: 'activity'
        text:
          leadIn: 'Simple Text Section'
          title: The Card Title
          titleTag: 'h3'
          subTitle: ''
          prose: |-
            Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.
      back:
        text:
          leadIn: ''
          title: This is the back
          titleTag: 'h3'
          subTitle: ''
          prose: |-
            Nullam id dolor id nibh ultricies vehicula ut id elit. Etiam porta sem malesuada magna mollis euismod. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
        ctas:
          - url: 'https://apple.com'
            label: 'Go Apple'
            isButton: false
            buttonStyle: 'primary'

    # other flipcards

Configuration Options

Card Layout

PropertyTypeRequiredDescription
cardsarrayYesArray of flip card definitions

Individual Card Properties

PropertyTypeRequiredDescription
cards[n].frontobjectYesFront side content of the card
cards[n].backobjectYesBack side content of the card

Front/Back Content

PropertyTypeRequiredDescription
iconstringNoIcon name from lib/layouts/icons (front side only)
textobjectNoText content with leadIn, title, titleTag, subTitle, and prose
ctasarrayNoCall-to-action buttons (typically on back side)