Music Player Demo 2
nyxui/music-player-demo2FreeExample
Example showing a music player.
Live preview
live · rendered by the registry
Rendered by shadcn/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://nyxui.com/r/music-player-demo2.jsonSource
1import { MusicPlayer } from "../ui/music-player";2import type { Track } from "../ui/music-player";34export default function MusicPlayerDemo2() {5 const currentTrack: Track = {6 id: "1",7 title: "Sugar",8 artist: "Maroon 5",9 album: "V",10 artwork: "/assets/images/music-player/cover2.jpg",11 duration: 235,12 };1314 const queue: Track[] = [15 currentTrack,16 {17 id: "2",18 title: "Payphone",19 artist: "Maroon 5",20 album: "Overexposed",21 artwork: "/assets/images/music-player/cover3.jpg",22 duration: 231,23 },24 {25 id: "3",26 title: "Animals",27 artist: "Maroon 5",28 album: "V",29 artwork: "/assets/images/music-player/cover4.jpg",30 duration: 191,31 },32 ];3334 return (35 <div className="w-full max-w-sm mx-auto border border-gray-300 dark:border-gray-700 rounded-2xl relative">36 <MusicPlayer37 currentTrack={currentTrack}38 queue={queue}39 currentIndex={0}40 initialTime={0}41 autoPlay={false}42 className="rounded-2xl"43 />44 </div>45 );46}
What it pulls in
Other registry items
Files it writes
More from shadcn/ui
All 68 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| 3D Layered Card Demo3d-layered-card-demo | shadcn/ui | Examples | Free | no deps | |
| Animated Code Block Demoanimated-code-block-demo | shadcn/ui | Examples | Free | no deps | |
| Animated Grainy Background Demoanimated-grainy-bg-demo | shadcn/ui | Examples | Free | no deps | |
| Animated Text Demoanimated-text-demo | shadcn/ui | Examples | Free | no deps | |
| Apple Glass Effect Demoapple-glass-effect-demo | shadcn/ui | Examples | Free | no deps | |
| Bubble Background Demobubble-background-demo | shadcn/ui | Examples | Free | no deps | |
| Custom Cursor Democustom-cursor-demo | shadcn/ui | Examples | Free | no deps | |
| Cyberpunk Card Democyberpunk-card-demo | shadcn/ui | Examples | Free | no deps |
