import PropTypes from 'prop-types'
import React from 'react'
import Image from 'next/image'
import { Row, Col } from 'reactstrap'
import ContentSection from './ContentSection'
const TeamLead = ({ photoId, name, description }) => (
{name}
{description}
)
TeamLead.propTypes = {
photoId: PropTypes.string,
name: PropTypes.string,
description: PropTypes.string,
}
const TeamMember = ({ photoId, name }) => (
{name}
)
TeamMember.propTypes = {
photoId: PropTypes.string,
name: PropTypes.string,
}
const TeamSection = ({ className }) => (
)
TeamSection.propTypes = {
className: PropTypes.string,
}
export default TeamSection