Fulldev UI

Docs Components Blocks Showcase

Colleagues

Meet the team

Our team is made up of experienced professionals who are dedicated to helping you achieve your goals.

1

John Doe

Ceo & Founder of ACME.

2

Jane Doe

Manager of ACME.

3

John Smith

Developer of ACME.

4

Jane Smith

Developer of ACME.

---
import Colleagues from 'fulldev-ui/blocks/Colleagues.astro'
---

<Colleagues
  align="start"
  heading="Meet the team"
  text="Our team is made up of experienced professionals who are dedicated to helping you achieve your goals."
  frame="panel"
  position="inset"
  cards={[
    {
      image: '/images/avatars/500/1.jpeg',
      heading: 'John Doe',
      text: 'Ceo & Founder of ACME.',
    },
    {
      image: '/images/avatars/500/2.jpeg',
      heading: 'Jane Doe',
      text: 'Manager of ACME.',
    },
    {
      image: '/images/avatars/500/3.jpeg',
      heading: 'John Smith',
      text: 'Developer of ACME.',
    },
    {
      image: '/images/avatars/500/4.jpeg',
      heading: 'Jane Smith',
      text: 'Developer of ACME.',
    },
  ]}
/>