How to set page title in blazor?
From ASP.NET CORE 6.0, the official docs says that we can Influence HTML <title> tag elements easily by using PageTitle component. Add the HeadOutlet Component in Program.cs builder.RootComponents.Add<HeadOutlet>(“head::after”); Then use PageTitle Component <PageTitle>@title</PageTitle> Update 1: Looks like this API has been put on hold to improve further. This has been removed from official docs link. … Read more