Skip to content

Commit 8c904ff

Browse files
authored
Add production favicon set for marketing page (#196)
- add 16x16, 32x32, and Apple touch icon assets - update `index.astro` head links to reference size-specific favicons
1 parent 9fa9cb4 commit 8c904ff

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed
2.83 KB
Loading
414 Bytes
Loading
662 Bytes
Loading

apps/marketing/public/favicon.ico

-269 KB
Binary file not shown.

apps/marketing/src/pages/index.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
href="https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap"
1313
rel="stylesheet"
1414
/>
15-
<link rel="icon" href="/favicon.ico" />
16-
<link rel="icon" type="image/png" href="/icon.png" />
15+
<link rel="icon" href="/favicon.ico" sizes="48x48" />
16+
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />
17+
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
18+
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
1719
<title>T3 Code</title>
1820
</head>
1921
<body>

0 commit comments

Comments
 (0)