diff --git a/public/Staging/android-chrome-192x192.png b/public/Staging/android-chrome-192x192.png new file mode 100644 index 0000000..cbd70d4 Binary files /dev/null and b/public/Staging/android-chrome-192x192.png differ diff --git a/public/Staging/android-chrome-512x512.png b/public/Staging/android-chrome-512x512.png new file mode 100644 index 0000000..5d93e84 Binary files /dev/null and b/public/Staging/android-chrome-512x512.png differ diff --git a/public/Staging/apple-touch-icon.png b/public/Staging/apple-touch-icon.png new file mode 100644 index 0000000..0914e18 Binary files /dev/null and b/public/Staging/apple-touch-icon.png differ diff --git a/public/Staging/browserconfig.xml b/public/Staging/browserconfig.xml new file mode 100644 index 0000000..d416bc5 --- /dev/null +++ b/public/Staging/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #ffffff + + + diff --git a/public/Staging/favicon-16x16.png b/public/Staging/favicon-16x16.png new file mode 100644 index 0000000..aa87654 Binary files /dev/null and b/public/Staging/favicon-16x16.png differ diff --git a/public/Staging/favicon-32x32.png b/public/Staging/favicon-32x32.png new file mode 100644 index 0000000..a606ca0 Binary files /dev/null and b/public/Staging/favicon-32x32.png differ diff --git a/public/Staging/favicon.ico b/public/Staging/favicon.ico new file mode 100644 index 0000000..54725be Binary files /dev/null and b/public/Staging/favicon.ico differ diff --git a/public/Staging/manifest.json b/public/Staging/manifest.json new file mode 100644 index 0000000..aad40f6 --- /dev/null +++ b/public/Staging/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/Staging/mstile-150x150.png b/public/Staging/mstile-150x150.png new file mode 100644 index 0000000..e91210a Binary files /dev/null and b/public/Staging/mstile-150x150.png differ diff --git a/public/Staging/safari-pinned-tab.svg b/public/Staging/safari-pinned-tab.svg new file mode 100644 index 0000000..5f44534 --- /dev/null +++ b/public/Staging/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 ceb1a41..16bb781 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -38,8 +38,9 @@ function App() { }) // Set title - const titleDocument = document.getElementById("title-id") as HTMLLinkElement; - if (titleDocument) titleDocument.title = whiteLabel.name; + const titleElement = document.getElementById("title-id") as HTMLElement; + if (titleElement) titleElement.textContent = whiteLabel.name; + let domain: string | undefined = import.meta.env.VITE_AUTH0_CLIENT_DOMAIN; let audience: string | undefined = import.meta.env.VITE_AUTH0_AUDIENCE;