In other words, Kobweb offers static site generation which already solves most of the concerns.
however, if you strictly need SSR for SEO purposes, e.g. because you need crawlers to index data which is not known at build time (SSG), you can (ab)use the export functionality and manipulate the html before serving it. during the export you would use some placeholder strings which you later replace with the actual data on the server. So it's not actually SSR like assembling the html dom on the server but rather simple templating.
this is definitely more of a hack but if it's a constraint for you than this could be a potential solution