"use client"; import Image from 'next/image'; import { PodcastDto } from '@/common/dtos/podcastDto'; import { useState } from 'react'; import DownloadButton from '@/app/common/components/buttons/DownloadButton'; export default function PodcastCard({ imageUrl, title, description, uploadDate, url, author, }: PodcastDto) { const [descriptionExpanded, setDescriptionExpanded] = useState(false), toggleExpand = () => { setDescriptionExpanded(!descriptionExpanded); }; return (
By: {author}
Uploaded: {uploadDate}