Convert Blazor Server App to Blazor Web App This skill helps an agent convert a pre-.NET 8 Blazor Server app into a .NET 8+ Blazor Web App. The old hosting model uses / with a Razor Page as the entry point. The new Blazor Web App model uses / with an root component, enabling per-component render modes, enhanced navigation, streaming rendering, and other .NET 8+ features. The converted app uses render mode to preserve existing interactive behavior. When to Use - Migrating a Blazor Server app from .NET 6 or .NET 7 to .NET 8+ - App currently uses and in (or ) - App uses (or ) as the host page wi…