import React from 'react' import Link from 'next/link' import Team from '../../api/team' import SectionTitle from '../SectionTitle/SectionTitle'; import Image from 'next/image'; const ClickHandler = () => { window.scrollTo(10, 0); } const TeamsSection = (props) => { return (
{Team.map((team, aitem) => (

{team.name}

{team.title}
))}
) } export default TeamsSection;