import { Play, Volume2, Heart, MessageCircle, Share2, Bookmark, MoreVertical } from 'lucide-react' export default function AudioPostCard({ post, onLike, onComment, onShare, onBookmark }) { return (
{/* Post Header */}
{post.user.initials}
{post.user.name} • {post.timeAgo}
{post.categories.map((category, index) => ( {category.name} ))}

{post.title}

{/* Audio Player */}
{post.audio.currentTime} {post.audio.duration}
{/* Transcription Preview */} {post.transcript && (

{post.transcript}

)}
{/* Post Actions */}
) }