add testnet banner

This commit is contained in:
andrewprog97 2024-10-15 01:16:22 +03:00 committed by jejolare
parent 8975498b4f
commit 1b8f4dd2ee
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 KiB

View file

@ -22,13 +22,13 @@ function App(data: AppCustomProps) {
<meta property="og:url" content="https://explorer.zano.org/"/>
<meta property="og:title" content="Block explorer (Zarcanum)"/>
<meta property="og:description" content="Zano is an open-source cryptocurrency and ecosystem with enterprise-grade privacy, security, and scalability"/>
<meta property="og:image" content="social-banner.png"/>
<meta property="og:image" content={netMode === "MAIN" ? "social-banner.png" : "social-banner-testnet.png"}/>
<meta property="twitter:card" content="summary_large_image"/>
<meta property="twitter:url" content="https://explorer.zano.org/"/>
<meta property="twitter:title" content="Block explorer (Zarcanum)"/>
<meta property="twitter:description" content="Zano is an open-source cryptocurrency and ecosystem with enterprise-grade privacy, security, and scalability"/>
<meta property="twitter:image" content="social-banner.png"/>
<meta property="twitter:image" content={netMode === "MAIN" ? "social-banner.png" : "social-banner-testnet.png"}/>
</Head>
<StoreProvider initial={{ netMode: netMode === "TEST" ? "TEST" : "MAIN" }}>
<Component {...pageProps} />