import Image from 'next/image'; import { PodcastDto } from '../../../common/dtos/podcastDto'; export default function PodcastCard({ imageUrl = "https://placehold.co/400", title, description, uploadDate, url, author, }: PodcastDto) { return (
{title

{title}

{description}

By: {author}

Uploaded: {uploadDate}

Listen Now
); }