import { component$, useStyles$ } from '@builder.io/qwik' import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister, } from '@builder.io/qwik-city' import { RouterHead } from '~/components/core/RouterHead' import { DarkThemeLauncher } from '~/components/core/DarkThemeLauncher' import globalStyles from '~/assets/styles/global.css?inline' 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 ( ) })