Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

MainLayout.razor 379B

1234567891011121314151617
  1. @inherits LayoutComponentBase
  2. <div class="page">
  3. <div style="background: green ;" class="sidebar">
  4. <NavMenu />
  5. </div>
  6. <main>
  7. <div class="top-row px-4">
  8. <a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
  9. </div>
  10. <article class="content px-4">
  11. @Body
  12. </article>
  13. </main>
  14. </div>