Skip to content

Commit

Permalink
feat: add emoji favicon generated by favicon.io
Browse files Browse the repository at this point in the history
This patch adds a emoji favicon (that uses the iOS Speaking Head [[1]])
generated by [[2]]. I will probably update this in the future, but it
works OK for now and was super quick to get.

[1]: https://emojipedia.org/apple/ios-16.4/speaking-head/
[2]: https://favicon.io
  • Loading branch information
nicholaschiang committed Jul 24, 2023
1 parent 014eb93 commit 46e4676
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,20 @@ export const links: LinksFunction = () => [
{ rel: 'stylesheet', href: '/fonts/hack-subset.css' },
{ rel: 'stylesheet', href: '/fonts/bodoni-moda.css' },
{ rel: 'stylesheet', href: tailwindStylesheetUrl },
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: '/favicon-32x32.png',
},
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: '/favicon-16x16.png',
},
{ rel: 'manifest', href: '/site.webmanifest' },
]

export const meta: V2_MetaFunction = () => [{ title: 'Nicholas Chiang' }]
Expand Down
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

0 comments on commit 46e4676

Please sign in to comment.