Skip to content

Commit

Permalink
feat: icons for dark and light modes
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Jul 31, 2024
1 parent c2efcad commit f280ad9
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ import { Providers } from "./providers";
export const metadata: Metadata = {
title: "Tour Of Json Schema",
description: "A Tour of Json Schema",
icons: [
{
rel: "icon",
type: "image/x-icon",
url: "/logos/icon.ico",
media: "(prefers-color-scheme: dark)",
},
{
rel: "icon",
type: "image/png",
url: "/logos/icon-black.ico",
media: "(prefers-color-scheme: light)",
},
],
};

export default function RootLayout({
Expand Down
Binary file removed public/logos/github-dark.png
Binary file not shown.
Binary file removed public/logos/github.png
Binary file not shown.
Binary file added public/logos/icon-black.ico
Binary file not shown.
File renamed without changes.
Binary file removed public/logos/microsoft-dark.png
Binary file not shown.
Binary file removed public/logos/microsoft.png
Binary file not shown.
Binary file removed public/logos/postman-dark.png
Binary file not shown.
Binary file removed public/logos/postman.png
Binary file not shown.
Binary file removed public/logos/zapier-dark.png
Binary file not shown.
Binary file removed public/logos/zapier.png
Binary file not shown.

0 comments on commit f280ad9

Please sign in to comment.