import React from 'react';
import { Shuffle, Repeat } from 'lucide-react';
const EnhancedPodcastPlayer = () => {
return (
<div className="w-full">
<iframe
width="100%"
height="390"
frameBorder="no"
scrolling="no"
seamless=""
src="https://share.transistor.fm/e/the-music-of-eeriecast-107e35d8-3826-4c98-955d-a455a08136a3/playlist"
className="mb-4"
/>
<div className="flex items-center justify-center gap-4 p-2 bg-gray-100 rounded-lg">
<button
className="p-2 rounded-full bg-gray-200 hover:bg-gray-300"
title="Shuffle (Currently Unavailable)"
>
<Shuffle size={24} />
</button>
<button
className="p-2 rounded-full bg-gray-200 hover:bg-gray-300"
title="Repeat (Currently Unavailable)"
>
<Repeat size={24} />
</button>