Hello, I am building a cross platform application using Tauri for the core and Qwik for the frontend (in SSG mode). I am new to web development (and Qwik) and I wanted to know if it's possible to share a Signal across different pages and have the different components relying on this variable change whenever some other component (possibly in a different pages) changes the value inside the Signal.
Here is a more concrete example:
Let's say I have a component called Bottle that's imported in the main layout.tsx file and that has one parameter called liquid which is a Signal type. So, we have <Bottle liquid=water /> where water is a Signal created in the main layout.tsx file of the web app. If two users load two different pages and one of them triggers something that modifies the value of the water Signal, will that change also affect the other user? If not, is it possible to obtain a similar result just with Qwik or, is this more backend related?