Skip to content

Commit

Permalink
Merge pull request #21 from nicolasperez19/feat/favicon
Browse files Browse the repository at this point in the history
feat: Added initial microphone favicon
  • Loading branch information
nicolasperez19 authored Oct 30, 2024
2 parents 8565c4d + 04a9e61 commit 871197e
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
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.
9 changes: 0 additions & 9 deletions public/favicon.svg

This file was deleted.

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"}
19 changes: 18 additions & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,24 @@ const { title, description } = Astro.props;
<meta charset="UTF-8" />
<meta name="description" content={description} />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/mic-master-flex/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/mic-master-flex/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/mic-master-flex/favicon-16x16.png"
/>
<link rel="manifest" href="/mic-master-flex/site.webmanifest" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
Expand Down

0 comments on commit 871197e

Please sign in to comment.