# General Notes About Blazor ## Hosting Models Generally, the most important thing is whether or not you want things to be handled server-side or not. See [documentation on these models](https://learn.microsoft.com/en-us/dotnet/architecture/blazor-for-web-forms-developers/hosting-models). ## Components & Pages The name of the file should match the name of the page. For example: - In `Options.razor`, the page declaration should be: - `@page "/options"`. #blazor #c_sharp #web