diff options
author | 2022-07-08 01:59:19 -0500 | |
---|---|---|
committer | 2022-07-09 00:57:52 -0700 | |
commit | 576ee66f20a4ba7e0551f7f856dac7504143fe8b (patch) | |
tree | f370859498228f58a9d0c5aacf40899b231cc6f7 | |
parent | b55b49ac4ebc9001fdaf14e9882a78e451c60913 (diff) | |
download | bun-576ee66f20a4ba7e0551f7f856dac7504143fe8b.tar.gz bun-576ee66f20a4ba7e0551f7f856dac7504143fe8b.tar.zst bun-576ee66f20a4ba7e0551f7f856dac7504143fe8b.zip |
feat(landing): add 256x icon
-rw-r--r-- | packages/bun-landing/page.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/bun-landing/page.tsx b/packages/bun-landing/page.tsx index 877983613..4ece56479 100644 --- a/packages/bun-landing/page.tsx +++ b/packages/bun-landing/page.tsx @@ -232,6 +232,7 @@ export default ({ inlineCSS }) => ( /> <meta name="theme-color" content="#fbf0df" /> <link rel="manifest" href="manifest.json" /> + <link rel="icon" type="image/png" sizes="256x256" href="/logo-square.png" /> <link rel="icon" type="image/png" sizes="32x32" href="/logo-square@32px.png" /> <link rel="icon" type="image/png" sizes="16x16" href="/logo-square@16px.png" /> <title>Bun is a fast all-in-one JavaScript runtime</title> |