2024-06-07 01:07:57 +02:00
|
|
|
<!doctype html>
|
2021-04-14 04:42:50 +02:00
|
|
|
<html lang="en">
|
2024-06-07 01:07:57 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
sizes="180x180"
|
|
|
|
href="/apple-touch-icon.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="32x32"
|
|
|
|
href="/favicon-32x32.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="16x16"
|
|
|
|
href="/favicon-16x16.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="manifest"
|
|
|
|
crossorigin="use-credentials"
|
|
|
|
href="/site.webmanifest"
|
|
|
|
/>
|
|
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Nitro" />
|
|
|
|
<meta name="application-name" content="Nitro" />
|
|
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
|
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<meta
|
|
|
|
name="apple-mobile-web-app-status-bar-style"
|
|
|
|
content="black-translucent"
|
|
|
|
/>
|
|
|
|
<base href="./" />
|
|
|
|
<title>Nitro</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
|
|
<div id="root" class="h-full w-full"></div>
|
|
|
|
<script>
|
|
|
|
window.NitroConfig = {
|
|
|
|
"config.urls": ["/renderer-config.json", "/ui-config.json"],
|
|
|
|
"sso.ticket":
|
|
|
|
new URLSearchParams(window.location.search).get("sso") ||
|
|
|
|
null,
|
|
|
|
"forward.type": new URLSearchParams(window.location.search).get(
|
|
|
|
"room",
|
|
|
|
)
|
|
|
|
? 2
|
|
|
|
: -1,
|
|
|
|
"forward.id":
|
|
|
|
new URLSearchParams(window.location.search).get("room") ||
|
|
|
|
0,
|
|
|
|
"friend.id":
|
|
|
|
new URLSearchParams(window.location.search).get("friend") ||
|
|
|
|
0,
|
|
|
|
"external.texts.url": [
|
|
|
|
"https://images.habbo.ws/assets/gamedata/" +
|
|
|
|
(new URLSearchParams(window.location.search).get(
|
|
|
|
"lang",
|
|
|
|
) || null) +
|
|
|
|
"/ExternalTexts.json",
|
|
|
|
"https://images.habbo.ws/assets/gamedata/" +
|
|
|
|
(new URLSearchParams(window.location.search).get(
|
|
|
|
"lang",
|
|
|
|
) || null) +
|
|
|
|
"/UITexts.json",
|
|
|
|
],
|
|
|
|
"furnidata.url":
|
|
|
|
"https://images.habbo.ws/assets/gamedata/" +
|
|
|
|
(new URLSearchParams(window.location.search).get("lang") ||
|
|
|
|
null) +
|
|
|
|
"/FurnitureData.json",
|
|
|
|
"productdata.url":
|
|
|
|
"https://images.habbo.ws/assets/gamedata/" +
|
|
|
|
(new URLSearchParams(window.location.search).get("lang") ||
|
|
|
|
null) +
|
|
|
|
"/ProductData.json",
|
|
|
|
lang:
|
|
|
|
new URLSearchParams(window.location.search).get("lang") ||
|
|
|
|
null,
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<script type="module" src="./src/index.tsx"></script>
|
|
|
|
</body>
|
2021-04-14 04:42:50 +02:00
|
|
|
</html>
|