import { AudioWaveform } from '@/components/ui/audio-waveform'; import { Button } from '@/components/ui/button'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import React, { useState } from 'react'; export function AudioWaveformStyled() { const [isPlaying1, setIsPlaying1] = useState(false); const [isPlaying2, setIsPlaying2] = useState(false); const [isPlaying3, setIsPlaying3] = useState(false); const [progress1, setProgress1] = useState(35); const [progress2, setProgress2] = useState(60); const [progress3, setProgress3] = useState(80); const musicData = [ 0.1, 0.3, 0.5, 0.4, 0.6, 0.8, 0.7, 0.9, 0.6, 0.4, 0.5, 0.7, 0.8, 0.9, 0.7, 0.5, 0.3, 0.4, 0.6, 0.8, 0.9, 0.7, 0.5, 0.4, 0.6, 0.8, 0.7, 0.5, 0.3, 0.4, ]; const voiceData = [ 0.2, 0.4, 0.3, 0.5, 0.4, 0.6, 0.5, 0.7, 0.4, 0.3, 0.5, 0.4, 0.6, 0.5, 0.4, 0.3, 0.4, 0.5, 0.6, 0.4, 0.3, 0.5, 0.4, 0.3, 0.4, 0.5, 0.4, 0.3, 0.2, 0.3, ]; const podcastData = [ 0.3, 0.5, 0.4, 0.6, 0.5, 0.4, 0.6, 0.7, 0.5, 0.4, 0.6, 0.5, 0.7, 0.6, 0.5, 0.4, 0.5, 0.6, 0.7, 0.5, 0.4, 0.6, 0.5, 0.4, 0.5, 0.6, 0.5, 0.4, 0.3, 0.4, ]; return ( {/* Music Style - Vibrant gradient colors */} 🎵 Music Track 2:15 / 3:45 {/* Voice Message Style - Clean and minimal */} 🎙️ Voice Message 0:45 {/* Podcast Style - Professional dark theme */} 🎧 Podcast Episode 45:30 / 58:15 ); }