Fluent UI Blazor — Consumer Usage Guide This skill teaches how to correctly use the Microsoft.FluentUI.AspNetCore.Components (version 4) NuGet package in Blazor applications. Critical Rules 1. No manual or tags needed The library auto-loads all CSS and JS via Blazor's static web assets and JS initializers. Never tell users to add or tags for the core library. 2. Providers are mandatory for service-based components These provider components MUST be added to the root layout (e.g. ) for their corresponding services to work. Without them, service calls fail silently (no error, no UI). 3. Service…