Skip to content

Commit 53a629d

Browse files
committed
feat: add Datum SVG favicon and title
Key changes: - Add packages/app/public/favicon.svg with the navy Datum mark and reference it from index.html (the generic favicon.ico stays as fallback) - Default the document title to "Datum Portal" and set theme-color to Midnight Fjord Claude-Session: https://claude.ai/code/session_01NMSkwUcaTmZr7S5XmV2aFG
1 parent 1007c11 commit 53a629d

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

packages/app/public/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

packages/app/public/index.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<meta name="theme-color" content="#000000" />
6+
<meta name="theme-color" content="#0C1D31" />
77
<meta
88
name="description"
99
content="Backstage is an open source framework for building developer portals"
@@ -17,6 +17,11 @@
1717
href="<%= publicPath %>/manifest.json"
1818
crossorigin="use-credentials"
1919
/>
20+
<link
21+
rel="icon"
22+
type="image/svg+xml"
23+
href="<%= publicPath %>/favicon.svg"
24+
/>
2025
<link rel="icon" href="<%= publicPath %>/favicon.ico" />
2126
<link rel="shortcut icon" href="<%= publicPath %>/favicon.ico" />
2227
<link
@@ -41,7 +46,7 @@
4146
href="<%= publicPath %>/safari-pinned-tab.svg"
4247
color="#5bbad5"
4348
/>
44-
<title><%= config.getOptionalString('app.title') ?? 'Backstage' %></title>
49+
<title><%= config.getOptionalString('app.title') ?? 'Datum Portal' %></title>
4550
</head>
4651
<body>
4752
<noscript>You need to enable JavaScript to run this app.</noscript>

0 commit comments

Comments
 (0)