A real-time widget that shows what I'm currently listening to on Spotify — built with Next.js API routes, SWR polling, and smart caching.
import NowPlaying from "@/components/ui/now-playing";
export default function MyPage() {
return (
<div className="flex items-center justify-center p-8">
<NowPlaying />
</div>
);
}