export function MusicPlayer({ title = "SelahBeat no Spotify" }: { title?: string }) {
  return (
    <div className="player-shell" data-reveal>
      <div className="player-topline">
        <span />
        <p>PLAYER OFICIAL</p>
        <span />
      </div>
      <iframe
        title={title}
        src="https://open.spotify.com/embed/artist/50fJZ4NozrlCPMpR2OGwuc?utm_source=generator&theme=0"
        width="100%"
        height="352"
        allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
        loading="lazy"
      />
    </div>
  );
}
