With a production application, there’s currently no way to push changes to just a portion of the application. This is a huge constraint in creating or updating landing pages because we can’t push any changes without pushing all changes to our app (including features that are half-complete or completed but not tested, etc.).
As such, what are some good ways to architect landing pages to mitigate this issue? We’ve only come up with 2 ideas:
- Put all of the content for the page in the database so that we can make content changes on the fly and/or create new pages from the same content on the fly. (but results in slightly slow page loads, and doesn’t allow for layout changes).
- Create a separate application and put it on a subdomain (e.g., try.domain.com) and then link from this page to other pages on your core app with links (but this means links are hardcoded and break when content moves and all of the data we get from users isn’t tracked and consolidated with the data we get from them in our core Bubble app)
Any other solutions we’re missing? Are you guys using Bubble for landing pages or a tool like Unbounce instead?