Skip to content

Commit

Permalink
Merge pull request #1081 from near/new_meta
Browse files Browse the repository at this point in the history
Updated Near's meta tagline and thumbnail image
  • Loading branch information
charleslavon authored Mar 22, 2024
2 parents dc0af74 + a59f62a commit 5b73e3c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file removed public/bos-meta.png
Binary file not shown.
6 changes: 3 additions & 3 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "NEAR",
"name": "NEAR | The OS for an Open Web",
"name": "NEAR | Blockchains, Abstracted",
"start_url": "/near/widget/NearOrg.HomePage",
"scope": "/",
"display": "standalone",
Expand All @@ -18,14 +18,14 @@
],
"screenshots": [
{
"src": "bos-meta.png",
"src": "near-meta.png",
"sizes": "1200x630",
"type": "image/png",
"description": "A screenshot of the home page",
"form_factor": "wide"
},
{
"src": "bos-meta.png",
"src": "near-meta.png",
"sizes": "1200x630",
"type": "image/png",
"description": "A screenshot of the home page"
Expand Down
Binary file added public/near-meta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/MetaTags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function MetaTags(props: Props) {
<meta property="og:title" content={props.title} />
<meta property="og:description" content={props.description} />
<meta property="og:type" content="website" />
<meta content={props.image || `${process.env.NEXT_PUBLIC_HOSTNAME}/bos-meta.png`} property="og:image" />
<meta content={props.image || `${process.env.NEXT_PUBLIC_HOSTNAME}/near-meta.png`} property="og:image" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@NEARProtocol" />
</Head>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ const HomePage: NextPageWithLayout = () => {
<ComponentWrapperPage
src={components.nearOrg.homePage}
meta={{
title: `NEAR | The OS for an Open Web`,
description: `"NEAR isn’t just a Layer 1 blockchain — it’s the Blockchain Operating System for an Open Web. Create and discover decentralized apps, and help build the future of the web, today."`,
title: `NEAR | Blockchains, Abstracted`,
description: `"NEAR is the chain abstraction stack, empowering builders to create apps that scale to billions of users and across all blockchains."`,
}}
/>
);
Expand Down

0 comments on commit 5b73e3c

Please sign in to comment.