Skip to content

Commit

Permalink
🔧 feat: change path used for favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-lj committed Apr 18, 2024
1 parent e6d1059 commit d66a510
Show file tree
Hide file tree
Showing 9 changed files with 102 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ export const links: LinksFunction = () => [
},
{
rel: "icon",
href: "/favicon.ico",
href: "/favicon-group.ico",
type: "image/ico",
sizes: "any",
},
{
rel: "icon",
href: "/icon.svg",
href: "/icon-group.svg",
type: "image/svg+xml",
},
{
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
href: "/apple-touch-icon-group.png",
},
{ rel: "stylesheet", href: styles },
];
Expand Down
2 changes: 1 addition & 1 deletion app/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ interface TrackHeadingProps {
}
const TrackHeading = ({ track }: TrackHeadingProps) => {
return (
<div className="flex w-full items-center justify-center rounded-xl bg-black px-[5px] pt-10 pb-12">
<div className="flex w-full items-center justify-center rounded-xl bg-black px-[5px] pb-12 pt-10">
<span
className={classNames(
"border-b-4 border-white px-[6px] py-1 text-[1.2rem] uppercase text-white",
Expand Down
Binary file added public/apple-touch-icon-group.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-group.ico
Binary file not shown.
Binary file added public/icon-192-group.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/icon-512-group.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/icon-group.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
95 changes: 95 additions & 0 deletions public/icon-group.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions public/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"icons": [
{ "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" }
{ "src": "/icon-192-group.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/icon-512-group.png", "type": "image/png", "sizes": "512x512" }
]
}
}

0 comments on commit d66a510

Please sign in to comment.