Skip to content

Commit

Permalink
chore(website): update open graph data
Browse files Browse the repository at this point in the history
re #522
  • Loading branch information
vplasencia committed Jun 10, 2024
1 parent de91389 commit d8476e9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions apps/website/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,24 @@ export const metadata: Metadata = {
description: APP_SETTINGS.APP_DESCRIPTION,
icons: {
icon: "/favicon.ico",
shortcut: "/favicon.ico"
shortcut: "/favicon.ico",
apple: "/favicon.ico"
},
metadataBase: new URL("https://bandada.pse.dev"),
openGraph: {
type: "website",
locale: "en_US",
url: "https://bandada.pse.dev",
title: APP_SETTINGS.APP_TITLE,
description: APP_SETTINGS.APP_DESCRIPTION,
siteName: "Bandada",
images: [
{
url: `/og-image.png`,
width: 1200,
height: 630,
alt: "Bandada"
url: `/og-image.png`
}
]
}
},
twitter: { card: "summary_large_image", images: "/og-image.png" }
}

export default function RootLayout({
Expand Down

0 comments on commit d8476e9

Please sign in to comment.