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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SurveyPrompt.razor 507B

12345678910111213141516
  1. <div class="alert alert-secondary mt-4">
  2. <span class="oi oi-pencil me-2" aria-hidden="true"></span>
  3. <strong>@Title</strong>
  4. <span class="text-nowrap">
  5. Please take our
  6. <a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2148851">brief survey</a>
  7. </span>
  8. and tell us what you think.
  9. </div>
  10. @code {
  11. // Demonstrates how a parent component can supply parameters
  12. [Parameter]
  13. public string? Title { get; set; }
  14. }