Files
AGS_IT_Solutions_Website/components/ueber-uns/teamCard.js
2022-09-20 16:03:09 +02:00

18 lines
349 B
JavaScript

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