/ Docs / src / components / Head.astro
Head.astro
 1  ---
 2  import { ClientRouter } from "astro:transitions"
 3  
 4  const { head } = Astro.locals.starlightRoute
 5  ---
 6  
 7  <ClientRouter />
 8  
 9  {
10  	head.map(({ tag: Tag, attrs, content }) => (
11  		<Tag {...attrs} set:html={content} />
12  	))
13  }