Unable to add meta information in Qwik

Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.

Builder content link

What are you trying to accomplish
The documentation to integrate meta tags on Qwik framework does not work.
It states that it should be done with code like below:

<Head>
            {/* Render meta tags from custom field */}
            <title>{article.data.title}</title>
            <meta name="description" content={article.data.blurb} />
            <meta name="og:image" content={article.data.image} />
          </Head>

Whereas the Qwik framework does not have such <Head> tag.
It should make use DocumentHead. Any examples would be helpful.

Hi @Peeplee,

Hope you’re doing well!

Unfortunately, this builder forum is only intended for questions about the use of the Builder.io Visual Editor and its related plans and pricing.

To reach out to the Qwik open source project teams, please head over to our Discord and join the discussion there.

Thanks. I figured it out using DocumentHead and resolveValue function we can put the metadata inside the Qwik app.