Skip to content

Commit 1ee8e25

Browse files
author
EC2 Default User
committed
feat: Add professional favicon and branding to WebUI
- Add high-contrast blue favicon with white 'D' for Document processing - Include multiple favicon formats for cross-browser compatibility: - favicon.ico (16x16 and 32x32) - favicon-16x16.png and favicon-32x32.png - apple-touch-icon.png for iOS devices - Updated logo192.png and logo512.png for PWA support - Add browserconfig.xml for IE/Edge compatibility - Update index.html with comprehensive favicon links and cache-busting - Improve professional appearance across all browsers and devices This ensures all GenAI IDP deployments have consistent, recognizable branding.
1 parent b51c3e4 commit 1ee8e25

File tree

8 files changed

+20
-6
lines changed

8 files changed

+20
-6
lines changed

src/ui/public/apple-touch-icon.png

4.94 KB
Loading

src/ui/public/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/logo192.png"/>
6+
<TileColor>#0066cc</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

src/ui/public/favicon-16x16.png

686 Bytes
Loading

src/ui/public/favicon-32x32.png

1.2 KB
Loading

src/ui/public/favicon.ico

3.24 KB
Binary file not shown.

src/ui/public/index.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,19 @@
66

77
<head>
88
<meta charset="utf-8" />
9-
<!-- Favicon setup - Multiple formats for better browser support -->
10-
<link rel="icon" type="image/x-icon" href="%PUBLIC_URL%/favicon.ico" />
11-
<link rel="shortcut icon" type="image/x-icon" href="%PUBLIC_URL%/favicon.ico" />
12-
<link rel="icon" type="image/png" sizes="192x192" href="%PUBLIC_URL%/logo192.png" />
9+
<!-- Comprehensive favicon setup for all browsers -->
10+
<link rel="icon" type="image/x-icon" href="%PUBLIC_URL%/favicon.ico?v=4" />
11+
<link rel="shortcut icon" type="image/x-icon" href="%PUBLIC_URL%/favicon.ico?v=4" />
12+
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png?v=4" />
13+
<link rel="icon" type="image/png" sizes="32x32" href="%PUBLIC_URL%/favicon-32x32.png?v=4" />
14+
<link rel="icon" type="image/png" sizes="192x192" href="%PUBLIC_URL%/logo192.png?v=4" />
15+
<link rel="icon" type="image/png" sizes="512x512" href="%PUBLIC_URL%/logo512.png?v=4" />
16+
<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png?v=4" />
1317
<meta name="viewport" content="width=device-width, initial-scale=1" />
14-
<meta name="theme-color" content="#000000" />
18+
<meta name="theme-color" content="#0066cc" />
1519
<meta name="description" content="GenAI Intelligent Document Processing" />
16-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
20+
<meta name="msapplication-TileColor" content="#0066cc" />
21+
<meta name="msapplication-config" content="%PUBLIC_URL%/browserconfig.xml" />
1722
<!--
1823
manifest.json provides metadata used when your web app is installed on a
1924
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

src/ui/public/logo192.png

4.82 KB
Loading

src/ui/public/logo512.png

14.3 KB
Loading

0 commit comments

Comments
 (0)