diff --git a/src/components/podcast-preview-card.tsx b/src/components/podcast-preview-card.tsx index 6de66fa..9b69dbc 100644 --- a/src/components/podcast-preview-card.tsx +++ b/src/components/podcast-preview-card.tsx @@ -1,15 +1,23 @@ +import { Link } from "react-router-dom"; + type Props = { title: string; author: string; imageUrl: string; + detailUrl: string; }; -export function PodcastPreviewCard({ title, author, imageUrl }: Props) { +export function PodcastPreviewCard({ + title, + author, + imageUrl, + detailUrl, +}: Props) { return ( -