From afc427901f4c25144c23fa4d791298ea124b512e Mon Sep 17 00:00:00 2001 From: Eric Schneider Date: Mon, 31 Oct 2022 09:12:47 -0700 Subject: [PATCH] fix: update product pages to have appropriate descriptions and titles --- packages/website/pages/products/w3link/index.js | 5 ++--- packages/website/pages/products/w3name/index.js | 5 ++--- packages/website/pages/products/web3storage/index.js | 4 ++-- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/packages/website/pages/products/w3link/index.js b/packages/website/pages/products/w3link/index.js index efe74dd817..9a367ef464 100644 --- a/packages/website/pages/products/w3link/index.js +++ b/packages/website/pages/products/w3link/index.js @@ -23,9 +23,8 @@ export function getStaticProps() { const crumbs = GeneralPageData.breadcrumbs; return { props: { - title: 'About - Web3 Storage - Simple file storage with IPFS & Filecoin', - description: - 'About web3.storage: the easiest way to store data on the decentralized web. Giving developers the power of Filecoin distributed storage and content addressing via a simple HTTP API and handy client libraries.', + title: 'Products - w3link - Fast IPFS HTTP gateway', + description: 'HTTP gateway for lightning fast reads from the IPFS network.', breadcrumbs: [crumbs.index, crumbs.w3link], }, }; diff --git a/packages/website/pages/products/w3name/index.js b/packages/website/pages/products/w3name/index.js index 54c3a5f781..049b3b9840 100644 --- a/packages/website/pages/products/w3name/index.js +++ b/packages/website/pages/products/w3name/index.js @@ -23,9 +23,8 @@ export function getStaticProps() { const crumbs = GeneralPageData.breadcrumbs; return { props: { - title: 'About - Web3 Storage - Simple file storage with IPFS & Filecoin', - description: - 'About web3.storage: the easiest way to store data on the decentralized web. Giving developers the power of Filecoin distributed storage and content addressing via a simple HTTP API and handy client libraries.', + title: 'Products - w3name - Mutable pointers to an immutable web', + description: 'Cryptographically signed mutable pointers using IPNS. Content addressing for a dynamic web.', breadcrumbs: [crumbs.index, crumbs.w3name], }, }; diff --git a/packages/website/pages/products/web3storage/index.js b/packages/website/pages/products/web3storage/index.js index b5d35f1a7d..cb81da778d 100644 --- a/packages/website/pages/products/web3storage/index.js +++ b/packages/website/pages/products/web3storage/index.js @@ -40,9 +40,9 @@ export function getStaticProps() { const crumbs = GeneralPageData.breadcrumbs; return { props: { - title: 'About - Web3 Storage - Simple file storage with IPFS & Filecoin', + title: 'Products - web3.storage - Easy-to-use decentralized storage', description: - 'About web3.storage: the easiest way to store data on the decentralized web. Giving developers the power of Filecoin distributed storage and content addressing via a simple HTTP API and handy client libraries.', + 'The easiest way to store data on the decentralized web, with data available over the IPFS network and secured in Filecoin deals', breadcrumbs: [crumbs.index, crumbs.web3storage], }, };