"use client"; import Link from "next/link"; import Image from "next/image"; import { Music } from "lucide-react"; import { api } from "@/lib/api"; import { memo } from "react"; interface MixCardProps { mix: { id: string; name: string; description: string; coverUrls: string[]; trackCount: number; }; index?: number; } const MixCard = memo( function MixCard({ mix, index }: MixCardProps) { return (
{mix.description}