Skip to content

Commit

Permalink
Merge branch 'fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
hkey0 committed Sep 30, 2024
2 parents 1e01ff9 + 869aa65 commit 646d5be
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 646d5be

Please sign in to comment.