Skip to content

Commit

Permalink
Merge pull request #28 from herbievine/feat/icons
Browse files Browse the repository at this point in the history
feat: icons
  • Loading branch information
herbievine authored Sep 18, 2023
2 parents 160e359 + c4fa206 commit f412a2f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
Binary file added public/assets/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 modified public/favicon.ico
Binary file not shown.
17 changes: 14 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,20 @@ export const metadata: Metadata = {
title: "Reactive",
card: "summary_large_image",
},
icons: {
shortcut: "/favicon.ico",
},
icons: [
{
rel: "icon",
type: "image/x-icon",
sizes: "48x48",
url: "/favicon.ico",
},
{
rel: "apple-touch-icon",
type: "image/png",
sizes: "180x180",
url: "/assets/apple-touch-icon.png",
},
],
};

type RootLayoutProps = {
Expand Down

1 comment on commit f412a2f

@vercel
Copy link

@vercel vercel bot commented on f412a2f Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.