Skip to content

Commit 88e4276

Browse files
committed
Update tagline
1 parent 991dad0 commit 88e4276

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <a href='https://redux.js.org'><img src='https://avatars.githubusercontent.com/u/13142323?s=200&v=4' height='60' alt='Redux Logo' aria-label='redux.js.org' style="display: flex;align-items: center;"/>Redux</a>
22

3-
Redux is a predictable state container for JavaScript apps.
3+
Redux is a JS library for predictable and maintainable global state management.
44

55
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).
66

docs/introduction/GettingStarted.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: 'Introduction > Getting Started: Resources to get started learning
77
import LiteYouTubeEmbed from 'react-lite-youtube-embed';
88
import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css'
99

10-
Redux is a predictable state container for JavaScript apps.
10+
Redux is a JS library for predictable and maintainable global state management.
1111

1212
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).
1313

docs/tutorials/essentials/part-3-data-flow.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To get started, you can open and fork this CodeSandbox:
4242
<iframe
4343
class="codesandbox"
4444
src="https://codesandbox.io/embed/github/reduxjs/redux-essentials-example-app/tree/master/?codemirror=1&fontsize=14&hidenavigation=1&theme=dark&runonclick=1"
45-
title="redux-quick-start-example-app"
45+
title="redux-essentials-example-app"
4646
allow="geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb"
4747
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"
4848
></iframe>
@@ -61,7 +61,7 @@ If you want to know specific details on how to add Redux to a project, see this
6161

6262
<DetailedExplanation title="Detailed Explanation: Adding Redux to a React Project">
6363

64-
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:
64+
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:
6565

6666
- Add the `@reduxjs/toolkit` and `react-redux` packages
6767
- Create a Redux store using RTK's `configureStore` API, and pass in at least one reducer function

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "redux",
33
"version": "5.0.1",
4-
"description": "Predictable state container for JavaScript apps",
4+
"description": "A JS library for predictable and maintainable global state management",
55
"license": "MIT",
66
"homepage": "http://redux.js.org",
77
"repository": "github:reduxjs/redux",

website/docusaurus.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ const {
66

77
module.exports = {
88
title: 'Redux',
9-
tagline: 'A Predictable State Container for JS Apps',
9+
tagline:
10+
'A JS library for predictable and maintainable global state management',
1011
url: 'https://redux.js.org',
1112
baseUrl: '/',
1213
favicon: 'img/favicon/favicon.ico',

website/src/pages/errors.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function Errors() {
1414

1515
return (
1616
<Layout
17-
title={`${siteConfig.title} - A predictable state container for JavaScript apps.`}
18-
description="A predictable state container for JavaScript apps."
17+
title={`${siteConfig.title} - A JS library for predictable and maintainable global state management`}
18+
description="A JS library for predictable and maintainable global state management"
1919
>
2020
<main className={styles.mainFull}>
2121
<h1>Production Error Codes</h1>

website/src/pages/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ function Home() {
137137
const { siteConfig = {} } = context
138138
return (
139139
<Layout
140-
title={`${siteConfig.title} - A predictable state container for JavaScript apps.`}
141-
description="A predictable state container for JavaScript apps."
140+
title={`${siteConfig.title} - A JS library for predictable and maintainable global state management`}
141+
description="A JS library for predictable and maintainable global state management"
142142
>
143143
<header className={classnames('hero hero--primary', styles.heroBanner)}>
144144
<div className="container">

0 commit comments

Comments
 (0)