I want to render most of my website using Framework Components so that the only Astro Component is the one that's required for the static routing to work. The only thing that Astro Component will do is load a Framework Component that handles everything. Doing it this way sounds like I'll need to make the entire page use client:load instead of being able to mark nested components to hydrate.
Is it possible to hydrate nested Framework Components with client:load? I'm trying to avoid using the client:load on a Framework Component, when I only want one of it's children 3 layers deep to hydrate.