Can we expect it in the near future as it plays a key role, particularly in Nextjs codegen, in passing static properties to parent Layout component in _app.jsx which helps us achieve a persistent layout and we can render different variants of that Layout in different pages.
Currently, the workaround I did is to maintain a mapping of static properties for each page in the code. Something like this
Essentially a json that stores static properties for each page. In the Layout component I get the particular static properties by the url path the user is at the moment.
Following would help simplify it and open new ideas to experiment around Page Component and Layouts in Nextjs specifically.
Meta Static Prop
An option in the studio to help us define default static prop values for any new page that we add in the studio
Probably not soon… One thing you could do is to mount all the authenticated pages under the same prefix (/auth/blah, etc), so you could figure it out from the url. Definitely not ideal though