Files
AGS_IT_Solutions_Website/components/ueber-uns/teamCard.js
2022-09-20 15:58:21 +02:00

17 lines
301 B
JavaScript

import Image from "next/image";
import React from "react";
const TeamCard = (props) => {
return (
<div>
<Image src={props.imgUrl} alt="ProfileImage" width={125} height={125} />
<div>
<h2>{props.name}</h2>
<h3>{props.stellung}</h3>
</div>
</div>
);
};
export default TeamCard;