From 0e465f239e2a87c51d7832069586375b73925498 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sun, 31 Mar 2024 13:56:35 -0400 Subject: [PATCH] Update tagline --- README.md | 2 +- docs/introduction/GettingStarted.md | 2 +- docs/tutorials/essentials/part-3-data-flow.md | 4 ++-- package.json | 2 +- website/docusaurus.config.js | 2 +- website/src/pages/errors.js | 4 ++-- website/src/pages/index.js | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 719c592b9e..0b6547b30f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Redux LogoRedux -Redux is a predictable state container for JavaScript apps. +Redux is a JS library for predictable global state management. It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. On top of that, it provides a great developer experience, such as [live code editing combined with a time traveling debugger](https://github.com/reduxjs/redux-devtools). diff --git a/docs/introduction/GettingStarted.md b/docs/introduction/GettingStarted.md index ac96abe805..54ed68ed33 100644 --- a/docs/introduction/GettingStarted.md +++ b/docs/introduction/GettingStarted.md @@ -7,7 +7,7 @@ description: 'Introduction > Getting Started: Resources to get started learning import LiteYouTubeEmbed from 'react-lite-youtube-embed'; import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css' -Redux is a predictable state container for JavaScript apps. +Redux is a JS library for predictable global state management. It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. On top of that, it provides a great developer experience, such as [live code editing combined with a time traveling debugger](https://github.com/reduxjs/redux-devtools). diff --git a/docs/tutorials/essentials/part-3-data-flow.md b/docs/tutorials/essentials/part-3-data-flow.md index 170b0bb348..d9115752d8 100644 --- a/docs/tutorials/essentials/part-3-data-flow.md +++ b/docs/tutorials/essentials/part-3-data-flow.md @@ -42,7 +42,7 @@ To get started, you can open and fork this CodeSandbox: @@ -61,7 +61,7 @@ If you want to know specific details on how to add Redux to a project, see this -The Redux template for CRA comes with Redux Toolkit and React-Redux already configured. If you're setting up a new project from scratch without that template, follow these steps: +The Redux template for Vite comes with Redux Toolkit and React-Redux already configured. If you're setting up a new project from scratch without that template, follow these steps: - Add the `@reduxjs/toolkit` and `react-redux` packages - Create a Redux store using RTK's `configureStore` API, and pass in at least one reducer function diff --git a/package.json b/package.json index 3adbba8018..daa48b3718 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "redux", "version": "5.0.1", - "description": "Predictable state container for JavaScript apps", + "description": "A JS library for predictable global state management", "license": "MIT", "homepage": "http://redux.js.org", "repository": "github:reduxjs/redux", diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index ab55b5f00f..def1aee958 100755 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -6,7 +6,7 @@ const { module.exports = { title: 'Redux', - tagline: 'A Predictable State Container for JS Apps', + tagline: 'A JS library for predictable global state management', url: 'https://redux.js.org', baseUrl: '/', favicon: 'img/favicon/favicon.ico', diff --git a/website/src/pages/errors.js b/website/src/pages/errors.js index 3dda026207..0d782d9f3f 100644 --- a/website/src/pages/errors.js +++ b/website/src/pages/errors.js @@ -14,8 +14,8 @@ function Errors() { return (

Production Error Codes

diff --git a/website/src/pages/index.js b/website/src/pages/index.js index e15d46d825..e35120420c 100755 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -137,8 +137,8 @@ function Home() { const { siteConfig = {} } = context return (