I am developing a Blazor Webassembly application. Based on the page the user came from, I should show different content. For example, the app should show Content A when the user came from Facebook and Content B otherwise. How can this feature achieved?
I red that one could do this by checking the referrer property of the request header, but I don't know how to access the http request on a razor page.