mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
## Description **What issue are you solving (or what feature are you adding) and how are you doing it?** 1. Netris has been renamed and rebranded to Nestri. 2. New Logo and colors, plus a new Philosophy and mission(more on that later) 3. We are moving all different repos into this one - which means API, Docker, Website, Docs etc will be moved here
39 lines
951 B
TypeScript
39 lines
951 B
TypeScript
import { component$ } from "@builder.io/qwik";
|
|
import {
|
|
QwikCityProvider,
|
|
RouterOutlet,
|
|
ServiceWorkerRegister,
|
|
} from "@builder.io/qwik-city";
|
|
import { RouterHead } from "./components/router-head/router-head";
|
|
import { isDev } from "@builder.io/qwik/build";
|
|
|
|
import "./global.css";
|
|
|
|
export default component$(() => {
|
|
/**
|
|
* The root of a QwikCity site always start with the <QwikCityProvider> component,
|
|
* immediately followed by the document's <head> and <body>.
|
|
*
|
|
* Don't remove the `<head>` and `<body>` elements.
|
|
*/
|
|
|
|
return (
|
|
<QwikCityProvider>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
{!isDev && (
|
|
<link
|
|
rel="manifest"
|
|
href={`${import.meta.env.BASE_URL}manifest.json`}
|
|
/>
|
|
)}
|
|
<RouterHead />
|
|
</head>
|
|
<body lang="en">
|
|
<RouterOutlet />
|
|
{!isDev && <ServiceWorkerRegister />}
|
|
</body>
|
|
</QwikCityProvider>
|
|
);
|
|
});
|