import Image from "next/image"; import { Typography, Card, CardHeader, CardBody, Avatar, } from "@material-tailwind/react"; interface EventContentCardProps { title: string; des: string; name: string; position: string; panel: string; img: string; } export function EventContentCard({ title, des, name, position, panel, img, }: EventContentCardProps) { return ( testimonial image {panel} {title} {des}
{name} {position}
); } export default EventContentCard;