export const NOW_PLAYING = {
  title: "Afro Bounce",
  artist: "Sauti Sol",
  album: "Afro Nation Vol.2",
  duration: "4:38",
  current: "2:14",
  progress: 0.42,
  image:
    "https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=800&q=75&auto=format&fit=crop",
  artistImage:
    "https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=600&q=70&auto=format&fit=crop",
};

export const QUEUE = [
  { id: 1, title: "Night Drive", artist: "Bien", duration: "3:52", image: "https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=160&q=70&auto=format&fit=crop" },
  { id: 2, title: "Jua Kali Remix", artist: "Khaligraph Jones", duration: "5:10", image: "https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=160&q=70&auto=format&fit=crop" },
  { id: 3, title: "Nairobi Nights", artist: "Nviiri the Storyteller", duration: "4:21", image: "https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=160&q=70&auto=format&fit=crop" },
  { id: 4, title: "Eastlands Still", artist: "H_art The Band", duration: "4:55", image: "https://images.unsplash.com/photo-1501386761578-eac5c94b800a?w=160&q=70&auto=format&fit=crop" },
  { id: 5, title: "Bora Uwe", artist: "Jovial", duration: "3:44", image: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=160&q=70&auto=format&fit=crop" },
];

export const LYRICS = [
  { line: "The beat drops like the Nairobi rain", state: "past" as const },
  { line: "We move different, that's the refrain", state: "past" as const },
  { line: "Afro bounce, afro bounce", state: "current" as const },
  { line: "Feel the rhythm in your veins", state: "future" as const },
  { line: "East Africa on the world's stage", state: "future" as const },
  { line: "We write our name on every page", state: "future" as const },
  { line: "From Mombasa to Kampala wide", state: "future" as const },
  { line: "Let the bassline be your guide", state: "future" as const },
];

export const RELATED = [
  { title: "Suzanna", artist: "Sauti Sol", image: "https://images.unsplash.com/photo-1459749411175-04bf5292ceea?w=300&q=70&auto=format&fit=crop" },
  { title: "Melanin", artist: "Sauti Sol", image: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=300&q=70&auto=format&fit=crop" },
  { title: "Short N Sweet", artist: "Bien", image: "https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=300&q=70&auto=format&fit=crop" },
  { title: "Mbwe Mbwe", artist: "Nviiri", image: "https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=300&q=70&auto=format&fit=crop" },
];

export const FEATURED_PLAYLIST = {
  name: "Afrobeats 2026",
  tracks: 47,
  image: "https://images.unsplash.com/photo-1459749411175-04bf5292ceea?w=320&q=70&auto=format&fit=crop",
};

export const PLAYLISTS = ["Afrobeats 2026", "Late Night Vibes", "Workout Mix"];
