Colleagues
Meet the team
Our team is made up of experienced professionals.
John Doe
Ceo & Founder
Jane Doe
Manager
John Smith
Developer
Jane Smith
Developer
---
import Colleagues1 from 'fulldev-ui/blocks/Colleagues1.astro'
---
<Colleagues1
heading="Meet the team"
paragraph="Our team is made up of experienced professionals."
cards={[
{
image: {
src: '/images/avatar-1.jpeg',
alt: 'John Doe',
},
heading: 'John Doe',
paragraph: 'Ceo & Founder',
},
{
image: {
src: '/images/avatar-2.jpeg',
alt: 'Jane Doe',
},
heading: 'Jane Doe',
paragraph: 'Manager',
},
{
image: {
src: '/images/avatar-3.jpeg',
alt: 'John Smith',
},
heading: 'John Smith',
paragraph: 'Developer',
},
{
image: {
src: '/images/avatar-4.jpeg',
alt: 'Jane Smith',
},
heading: 'Jane Smith',
paragraph: 'Developer',
},
]}
/>