diff --git a/public/AdaptiveDashboard/android-chrome-192x192.png b/public/AdaptiveDashboard/android-chrome-192x192.png new file mode 100644 index 0000000..cbd70d4 Binary files /dev/null and b/public/AdaptiveDashboard/android-chrome-192x192.png differ diff --git a/public/AdaptiveDashboard/android-chrome-512x512.png b/public/AdaptiveDashboard/android-chrome-512x512.png new file mode 100644 index 0000000..5d93e84 Binary files /dev/null and b/public/AdaptiveDashboard/android-chrome-512x512.png differ diff --git a/public/AdaptiveDashboard/apple-touch-icon.png b/public/AdaptiveDashboard/apple-touch-icon.png new file mode 100644 index 0000000..0914e18 Binary files /dev/null and b/public/AdaptiveDashboard/apple-touch-icon.png differ diff --git a/public/AdaptiveDashboard/browserconfig.xml b/public/AdaptiveDashboard/browserconfig.xml new file mode 100644 index 0000000..d416bc5 --- /dev/null +++ b/public/AdaptiveDashboard/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #ffffff + + + diff --git a/public/AdaptiveDashboard/favicon-16x16.png b/public/AdaptiveDashboard/favicon-16x16.png new file mode 100644 index 0000000..aa87654 Binary files /dev/null and b/public/AdaptiveDashboard/favicon-16x16.png differ diff --git a/public/AdaptiveDashboard/favicon-32x32.png b/public/AdaptiveDashboard/favicon-32x32.png new file mode 100644 index 0000000..a606ca0 Binary files /dev/null and b/public/AdaptiveDashboard/favicon-32x32.png differ diff --git a/public/AdaptiveDashboard/favicon.ico b/public/AdaptiveDashboard/favicon.ico new file mode 100644 index 0000000..54725be Binary files /dev/null and b/public/AdaptiveDashboard/favicon.ico differ diff --git a/public/AdaptiveDashboard/manifest.json b/public/AdaptiveDashboard/manifest.json new file mode 100644 index 0000000..aad40f6 --- /dev/null +++ b/public/AdaptiveDashboard/manifest.json @@ -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" +} diff --git a/public/AdaptiveDashboard/mstile-150x150.png b/public/AdaptiveDashboard/mstile-150x150.png new file mode 100644 index 0000000..e91210a Binary files /dev/null and b/public/AdaptiveDashboard/mstile-150x150.png differ diff --git a/public/AdaptiveDashboard/safari-pinned-tab.svg b/public/AdaptiveDashboard/safari-pinned-tab.svg new file mode 100644 index 0000000..5f44534 --- /dev/null +++ b/public/AdaptiveDashboard/safari-pinned-tab.svg @@ -0,0 +1,2198 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/App.tsx b/src/app/App.tsx index 922559f..8b0d10e 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -28,6 +28,8 @@ function App() { // Set favicon const faviconDocument = document.getElementById("favicon-link") as HTMLLinkElement; const faviconPath = `/${whiteLabel.name.replace(/\s/g, "")}/favicon.ico`; + console.log("Favicon Document: ", faviconDocument) + console.log("Favicon Path: ", faviconPath) fetch(faviconPath).then(response => { if (response.ok && faviconDocument) { faviconDocument.href = faviconPath;