Skip to content

Commit

Permalink
Add missing meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Feb 5, 2024
1 parent b0c8cf4 commit 4c73eb8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions apps/blog/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ export const metadata: Metadata = {
"https://fonts.googleapis.com/css2?family=Fira+Code&display=swap",
],
manifest: "/manifest.json",
themeColor: "#f1718c",
applicationName: SITE_NAME,
icons: [
{ rel: "icon", url: "https://marshallku.com/favicon.ico" },
{ rel: "apple-touch-icon", url: "https://marshallku.com/logo/logo-152.png" },
{ rel: "apple-touch-icon-precomposed", url: "https://marshallku.com/favicon.ico" },
],
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
Expand Down

0 comments on commit 4c73eb8

Please sign in to comment.