Skip to content

Commit

Permalink
refactor(app): add additional og tags (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
superical authored Nov 16, 2023
1 parent 3474f30 commit 526299f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/app/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,17 @@ const App: AppType<{ session: Session | null }> = ({ Component, pageProps }: App
<>
<Head>
<title>Purpose Bound Money (PBM) Portal</title>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:type" content="website" />
<meta property="og:image" content="/opengraph-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Purpose Bound Money Portal" />
<meta property="og:image:alt" content="Purpose Bound Money (PBM) Portal" />
<meta property="og:title" content="Purpose Bound Money (PBM) Portal" />
<meta name="twitter:card" content="summary_large_image" />
<meta
property="og:description"
content="A protocol, developed as part of Project Orchid, enabling the use of digital money with automated on-chain escrow payment releases."
/>
</Head>

<Script src={`https://www.googletagmanager.com/gtag/js?id=${gaMeasurementId}`} />
Expand Down

0 comments on commit 526299f

Please sign in to comment.