Skip to content

Commit

Permalink
fix: move favicon files into the proper dir
Browse files Browse the repository at this point in the history
  • Loading branch information
asharonbaltazar committed Feb 6, 2025
1 parent 1f396fc commit 9d3c4b5
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions react-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<link rel="preload" href="/onemac-logo.png" as="image" />
<link rel="icon" href="public/favicon-light.png" type="image/png" sizes="32x32" />
<link rel="icon" href="/favicon-light.png" type="image/png" sizes="32x32" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
Expand Down Expand Up @@ -32,7 +32,7 @@
const favicon =
document.querySelector('link[rel="icon"]') || document.createElement("link");
favicon.rel = "icon";
favicon.href = isDarkMode ? "public/favicon-dark.png" : "public/favicon-light.png";
favicon.href = isDarkMode ? "/favicon-dark.png" : "/favicon-light.png";
document.head.appendChild(favicon);
}

Expand Down
Binary file removed react-app/public/images/logos/macpro.png
Binary file not shown.
Binary file removed react-app/public/images/logos/mmdl.png
Binary file not shown.
Binary file removed react-app/public/onemac-logo.png
Binary file not shown.
File renamed without changes
File renamed without changes

0 comments on commit 9d3c4b5

Please sign in to comment.