"use client"; import { Button } from "@/components/ui/button"; import { Slider } from "@/components/ui/slider"; import { FastForward, Pause, Play, Rewind, SkipBack, SkipForward, Volume2, } from "lucide-react"; import Image from "next/image"; import { useState } from "react"; export function PodcastPlayer() { const [isPlaying, setIsPlaying] = useState(false); return (
Efoux