Skip to content

Commit

Permalink
fix: og
Browse files Browse the repository at this point in the history
  • Loading branch information
kamescg committed Nov 27, 2023
1 parent 5cd8bad commit 8820053
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions apps/www/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,20 @@ export const metadata: Metadata = {
title: siteConfig.name,
description: siteConfig.description,
siteName: siteConfig.name,
images: [
{
url: siteConfig.ogImage,
width: 1200,
height: 630,
alt: siteConfig.name,
},
],
},
twitter: {
card: "summary_large_image",
title: siteConfig.name,
description: siteConfig.description,
images: [siteConfig.ogImage],
creator: "@districtLabs",
},
icons: {
Expand Down
Binary file removed apps/www/app/opengraph-image.jpg
Binary file not shown.
4 changes: 2 additions & 2 deletions apps/www/config/site.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const siteConfig = {
name: "turboeth/buidl",
url: "https://buidl.turboeth.com",
ogImage: "https://buidl.turboeth.com/og.jpg",
url: "https://buidl.turboeth.xyz",
ogImage: "https://buidl.turboeth.xyz/og.jpg",
description:
"Collection of essential components for modern Web3 applications ⚡️ copy and paste in minutes.",
links: {
Expand Down

0 comments on commit 8820053

Please sign in to comment.