Please excuse my ignorance, but I'd need some advice whether Kobweb would be the right choice for my use-case: I have a Kotlin CLI application that is writing out a HTML report with dynamic elements. Currently, this HTML report basically is single-page application that uses React to render some embedded JSON data in a dynamic (collapsible, searchable) tree view. In order to generate the report, the CLI app transforms its internal data model to serializable JSON which is then patched into a HTML template that is written out as the report. That's not a very elegant technical approach, and I'd like to avoid data transformation to JSON and instead would prefer to directly work with my Kotlin data classes for generating the report. Could Kobweb be of use here, ditching React in favor of Compose? Note that I'm not interested in a scenario where I'm hosting HTML on a web server. Instead, a self-contained HTML report should be generated that could be viewed with any browser when double clicking on it on the local file system. Any advice how to accomplish that is appreciated!