Skip to content

Commit ea63c7e

Browse files
committed
fix: update Open Graph image generation to include logo
This commit modifies the Open Graph image generation in `route.tsx` to embed the SettleMint logo directly in the image response. The logo is now included as an SVG data URL, ensuring it is available at build time and enhancing the visual representation of the site on social media platforms.
1 parent e4f6e65 commit ea63c7e

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

src/app/layout.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ const robotoMono = Roboto_Mono({
1818
});
1919

2020
export const metadata: Metadata = {
21+
metadataBase: new URL(
22+
process.env.NEXT_PUBLIC_SITE_URL || "https://console.settlemint.com"
23+
),
2124
other: {
2225
"color-scheme": "light dark",
2326
},

0 commit comments

Comments
 (0)