import { useRouter } from 'next/navigation'; export default function AddPodcastCard({ stream }: { stream: string }) { const router = useRouter(); const handleClick = () => { router.push(`${process.env.NEXT_PUBLIC_API_BASE_URL}/${stream}/publish`); }; return (