diff --git a/apps/earth/src/components/head/Head.tsx b/apps/earth/src/components/head/Head.tsx index 8d5a2e3..3f06f29 100644 --- a/apps/earth/src/components/head/Head.tsx +++ b/apps/earth/src/components/head/Head.tsx @@ -16,6 +16,12 @@ const Head = component$(() => { + + + {head.meta.map((m) => ( diff --git a/apps/earth/src/root.tsx b/apps/earth/src/root.tsx index ee324de..3d9c3cd 100644 --- a/apps/earth/src/root.tsx +++ b/apps/earth/src/root.tsx @@ -1,21 +1,12 @@ -import { component$, useStyles$ } from "@builder.io/qwik"; +import { component$ } from "@builder.io/qwik"; import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister, } from "@builder.io/qwik-city"; -import Head from "./components/head/Head"; -import globalStyles from "./global.css?inline"; +import Head from "components/head/Head"; export default component$(() => { - /** - * The root of a QwikCity site always start with the component, - * immediately followed by the document's and . - * - * Dont remove the `` and `` elements. - */ - useStyles$(globalStyles); - return (