Skip to content

Commit

Permalink
🔍 write open graph metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Burg committed Sep 7, 2023
1 parent e9a60b5 commit bf17a14
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
File renamed without changes.
25 changes: 25 additions & 0 deletions batcher-ui/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,37 @@ config.autoAddCss = false;
process.env.NEXT_PUBLIC_GA_TRACKING_ID &&
ReactGA.initialize(process.env.NEXT_PUBLIC_GA_TRACKING_ID);


const App = ({ Component }: AppProps) => {
return (
<div>
<Head>
<link rel="shortcut icon" href="/favicon.ico" />
<title>BATCHER</title>
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="Batcher DEX" />
<meta
property="og:description"
content="The aim of the batch clearing dex is to enable users to deposit tokens with the aim of being swapped at a fair price with bounded slippage and almost no impermanent loss.."
/>
<meta property="og:url" content={process.env.NEXT_PUBLIC_BATCHER_URI} />
<meta property="og:site_name" content="Batcher DEX" />
<meta
property="og:image"
content={process.env.NEXT_PUBLIC_PATH_TO_BATCHER_LOGO}
/>
<meta property="twitter:card" content="summary" />
<meta
property="twitter:description"
content="The aim of the batch clearing dex is to enable users to deposit tokens with the aim of being swapped at a fair price with bounded slippage and almost no impermanent loss.."
/>
<meta property="twitter:title" content="Batcher DEX" />
<meta property="twitter:site" content="@Marigold_Dev" />
<meta property="twitter:creator" content="@Marigold_Dev" />
<meta
property="twitter:image"
content={process.env.NEXT_PUBLIC_PATH_TO_BATCHER_LOGO}
/>
</Head>
<Provider store={store}>
<TezosToolkitProvider>
Expand Down

0 comments on commit bf17a14

Please sign in to comment.