Select the types of activity you want to include in your feed.
Attempt to improve performance of the spotify sdk
TODO: defer nowplaying contents till its ready to be inserted via streaming aka, somehow move the contents to the end of the dom but make it go in at the same place
···33import Feeds from "/components/home/feeds/Feeds.astro";
44import Landing from "/components/home/Landing.astro";
55import NowPlaying from "/components/home/playing/NowPlaying.astro";
66+// start the sdk setup while other components and requests are ongoing
77+// so that the sdk is ready or closer to being ready when needed
88+import { sdk } from "/components/home/playing/spotify";
99+// prevent treeshaking
1010+sdk;
611---
712813<Base>