import { component$, useStyles$ } from '@builder.io/qwik'; import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister, } from '@builder.io/qwik-city'; import { QwikSpeakProvider } from 'qwik-speak'; import { RouterHead } from './components/router-head/router-head'; import globalStyles from './global.css?inline'; import { config } from './speak-config'; import { translationFn } from './speak-functions'; 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. */ useStyles$(globalStyles); return (
); });