import { component$ } from '@builder.io/qwik' import { useDocumentHead, useLocation } from '@builder.io/qwik-city' /** * The RouterHead component is placed inside of the document `` element. */ export const RouterHead = component$(() => { const head = useDocumentHead() const loc = useLocation() return ( <> {head.title} {head.meta.map((m) => ( ))} {head.links.map((l) => ( ))} {head.styles.map((s) => (