Use React Context or a library like Redux to maintain a global state that all three pages can access.
- Page 1: Collects and updates data in the global state.
- Page 2: Collects additional data and updates the same global state.
- Page 3: Fetches and displays the combined data from Page 1 and Page 2.