We are developing a system which is composed of multiple bounded contexts, there are user interfaces where the information displayed needs to be rendered from multiple bounded contexts.
A classic example of such an interface is the Amazon.com ordering page. Where we see about the product (product BC), inventory available (Inventory BC), prices and so on.
My question: in such scenarios, in which bounded context would the user interface live? I get how we can pull data from multiple BC's to form the page, but are there any guidelines as to where the page itself should reside?
Similar questions here and here, they deal with how to get information from the multiple BC's, but they do not address in which BC the user interface itself will live in ?
Any guidelines on that question With an example would be great...