diff --git a/README.md b/README.md index 719c592b9e..205942d424 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 and maintainable 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..a6b1e38056 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 and maintainable 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..4a3d23d807 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 and maintainable 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..a7692a5216 100755 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -6,7 +6,8 @@ const { module.exports = { title: 'Redux', - tagline: 'A Predictable State Container for JS Apps', + tagline: + 'A JS library for predictable and maintainable 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..84671af671 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..814a1eff5a 100755 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -137,8 +137,8 @@ function Home() { const { siteConfig = {} } = context return (