Skip to content

Commit

Permalink
Address icon consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
catalinred committed Oct 29, 2024
1 parent 7a1ba29 commit 9ee3898
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 6 deletions.
Binary file removed app/apple-icon.png
Binary file not shown.
Binary file removed app/favicon.ico
Binary file not shown.
5 changes: 5 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ export default function RootLayout({
}) {
return (
<html lang="en" className={`${rubikFont.variable}`}>
<head>
<link rel="icon" href="/favicon.png" type="image/png" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<body>
<ScrollAnchorProvider>
<ClusterProvider>
Expand Down
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.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/favicon.svg
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-192.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.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"name": "Inspect transactions, accounts, blocks, and more on the Solana blockchain",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "apple-icon.png",
"type": "image/png",
"sizes": "512x512"
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": ".",
Expand Down

0 comments on commit 9ee3898

Please sign in to comment.