Skip to content

Commit

Permalink
feat(seo): add og image and author url
Browse files Browse the repository at this point in the history
  • Loading branch information
nainglinnkhant committed Aug 27, 2024
1 parent 5764e0c commit c847cf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const metadata: Metadata = {
},
{
name: "nainglinnkhant",
url: "https://nainglinnkhant.com",
},
],
openGraph: {
Expand All @@ -46,12 +47,14 @@ export const metadata: Metadata = {
title: siteConfig.name,
description: siteConfig.description,
siteName: siteConfig.name,
images: [`${siteConfig.url}/og.png`],
},
twitter: {
card: "summary_large_image",
title: siteConfig.name,
description: siteConfig.description,
images: [`${siteConfig.url}/og.jpg`],
creator: "@nainglk",
images: [`${siteConfig.url}/og.png`],
},
icons: {
icon: [
Expand Down
Binary file added src/app/og.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c847cf7

Please sign in to comment.