added manifest for AdaptiveDashboard

This commit is contained in:
Carter 2025-04-22 11:06:51 -06:00
parent b9544d6a7b
commit 62e3a164d9
11 changed files with 2235 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffffff</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,26 @@
{
"name": "Brand X Technologies",
"short_name": "BXT",
"icons": [
{
"src": "favicon.ico",
"sizes": "48x48",
"type": "image/x-icon"
},
{
"src": "android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "/",
"theme_color": "#272727",
"background_color": "#424242",
"display": "standalone",
"orientation": "any"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 144 KiB

View file

@ -28,6 +28,8 @@ function App() {
// Set favicon // Set favicon
const faviconDocument = document.getElementById("favicon-link") as HTMLLinkElement; const faviconDocument = document.getElementById("favicon-link") as HTMLLinkElement;
const faviconPath = `/${whiteLabel.name.replace(/\s/g, "")}/favicon.ico`; const faviconPath = `/${whiteLabel.name.replace(/\s/g, "")}/favicon.ico`;
console.log("Favicon Document: ", faviconDocument)
console.log("Favicon Path: ", faviconPath)
fetch(faviconPath).then(response => { fetch(faviconPath).then(response => {
if (response.ok && faviconDocument) { if (response.ok && faviconDocument) {
faviconDocument.href = faviconPath; faviconDocument.href = faviconPath;