3 animated assets available
Animated conductor waving baton
Lead performer animation
Animated metronome ticking
import Image from 'next/image';
<Image 
  src="/pics/conductor.gif" 
  alt="Conductor animation"
  width={200}
  height={200}
  unoptimized  // Required for GIF animation!
/>â ī¸ Important: Add unoptimized prop to preserve GIF animation
<img src="/pics/metronome_ani.gif" alt="Metronome animation" />
.animated-bg {
  background-image: url('/pics/lead.gif');
  background-size: cover;
  background-repeat: no-repeat;
}