From 6dcb6ba1a5f07a30ad906c59126d214b57b4b390 Mon Sep 17 00:00:00 2001 From: Maria Elisabeth Schreiber Date: Fri, 20 Dec 2024 05:13:29 -0700 Subject: [PATCH] docs: add meta descriptions to top-level pages (#12239) --- docs/source/get-started.mdx | 2 ++ docs/source/index.mdx | 2 ++ docs/source/why-apollo.mdx | 3 ++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/source/get-started.mdx b/docs/source/get-started.mdx index 0dc91bc6281..cacfad62526 100644 --- a/docs/source/get-started.mdx +++ b/docs/source/get-started.mdx @@ -1,5 +1,7 @@ --- title: Get started with Apollo Client +subtitle: Set up Apollo Client and fetch GraphQL data with React +description: Learn how to set up your React app, fetch GraphQL data, and integrate Apollo Client seamlessly into your UI with this step-by-step tutorial. --- Hello! 👋 This short tutorial gets you up and running with Apollo Client. diff --git a/docs/source/index.mdx b/docs/source/index.mdx index dff2acdd31f..23b2e7afc2f 100644 --- a/docs/source/index.mdx +++ b/docs/source/index.mdx @@ -1,5 +1,7 @@ --- title: Introduction to Apollo Client +subtitle: Learn how Apollo Client simplifies GraphQL data management to help build web apps +description: Discover Apollo Client, a powerful state management library for JavaScript. Learn how it simplifies fetching, caching, and more with GraphQL. --- **Apollo Client** is a comprehensive state management library for JavaScript. It enables you to manage both local and remote data with GraphQL. Use it to fetch, cache, and modify application data, all while automatically updating your UI. diff --git a/docs/source/why-apollo.mdx b/docs/source/why-apollo.mdx index b9ed80c5690..ca18717e151 100644 --- a/docs/source/why-apollo.mdx +++ b/docs/source/why-apollo.mdx @@ -1,6 +1,7 @@ --- title: Why Apollo Client? -description: Why choose Apollo Client to manage your data? +subtitle: Discover why Apollo Client is the ideal choice for managing data with GraphQL +description: Learn how Apollo Client simplifies data management with GraphQL, offers intelligent caching, and unifies remote and local data. --- Apollo Client is a state management library that simplifies managing remote and local data with GraphQL. Apollo Client's intelligent caching and declarative approach to data fetching can help you iterate faster while writing less code. Additionally, if you need custom functionality, you can create your dream client by building extensions on top of Apollo Client.