import { component$ } from "@builder.io/qwik"; import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister, } from "@builder.io/qwik-city"; import { RouterHead } from "@nestri/ui"; import { isDev } from "@builder.io/qwik/build"; import "@nestri/ui/globals.css"; import { Fonts } from "@nestri/ui"; export default component$(() => { /** * The root of a QwikCity site always start with the component, * immediately followed by the document's and . * * Don't remove the `` and `` elements. */ return ( {!isDev && ( )} {/* {!isDev && } */} ); });