Skip to content

Commit

Permalink
fix: extend metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
hkey0 committed Sep 30, 2024
1 parent 0ca0d7d commit 869aa65
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,31 @@ export const metadata: Metadata = {
: '/testnet-favicon.png',
}
],
openGraph: {
title: process.env.WEBSITE_TITLE,
description: process.env.WEBSITE_DESCRIPTION,
images: [
{
url: "/eclipse-favicon.png",
width: 800,
height: 8000,
}
],
type: 'website',
locale: 'en_US'
},
twitter: {
card: "summary_large_image",
title: process.env.WEBSITE_TITLE,
description: process.env.WEBSITE_DESCRIPTION,
images: [
{
url: "/eclipse-favicon.png",
width: 800,
height: 8000,
}
]
}
};

export default function RootLayout({
Expand Down

0 comments on commit 869aa65

Please sign in to comment.