Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(app): add additional og tags #15

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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