Listen to and share the music in the Atmosphere. musicsky.up.railway.app/
nextjs atproto music typescript react
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(sidebar): remove the placeholder skeletons

+1 -4
+1 -4
src/app/(main)/layout.tsx
··· 23 23 Listen and share the music in the Atmosphere. 24 24 </h2> 25 25 </div> 26 - {Array.from({ length: 5 }).map((_, index) => ( 27 - <Skeleton key={index} className="w-full h-9 rounded-full" /> 28 - ))} 29 26 </div> 30 27 <div className="flex flex-col gap-4"> 31 28 <Suspense fallback={<Skeleton className="w-full h-9 rounded-full" />}> ··· 36 33 </Button> 37 34 </div> 38 35 </div> 39 - <div className="max-w-lg w-full pb-4 px-4 pt-8">{children}</div> 36 + <div className="max-w-lg w-full p-4">{children}</div> 40 37 </div> 41 38 ); 42 39 }