Skip to content

Commit

Permalink
Merge pull request #4693 from reduxjs/docs/update-tagline
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Mar 31, 2024
2 parents 991dad0 + 88e4276 commit 5455b8d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# <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>

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

Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/GettingStarted.md
Expand Up @@ -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).

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/essentials/part-3-data-flow.md
Expand Up @@ -42,7 +42,7 @@ To get started, you can open and fork this CodeSandbox:
<iframe
class="codesandbox"
src="https://codesandbox.io/embed/github/reduxjs/redux-essentials-example-app/tree/master/?codemirror=1&fontsize=14&hidenavigation=1&theme=dark&runonclick=1"
title="redux-quick-start-example-app"
title="redux-essentials-example-app"
allow="geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb"
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"
></iframe>
Expand All @@ -61,7 +61,7 @@ If you want to know specific details on how to add Redux to a project, see this

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

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
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
3 changes: 2 additions & 1 deletion website/docusaurus.config.js
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/errors.js
Expand Up @@ -14,8 +14,8 @@ function Errors() {

return (
<Layout
title={`${siteConfig.title} - A predictable state container for JavaScript apps.`}
description="A predictable state container for JavaScript apps."
title={`${siteConfig.title} - A JS library for predictable and maintainable global state management`}
description="A JS library for predictable and maintainable global state management"
>
<main className={styles.mainFull}>
<h1>Production Error Codes</h1>
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/index.js
Expand Up @@ -137,8 +137,8 @@ function Home() {
const { siteConfig = {} } = context
return (
<Layout
title={`${siteConfig.title} - A predictable state container for JavaScript apps.`}
description="A predictable state container for JavaScript apps."
title={`${siteConfig.title} - A JS library for predictable and maintainable global state management`}
description="A JS library for predictable and maintainable global state management"
>
<header className={classnames('hero hero--primary', styles.heroBanner)}>
<div className="container">
Expand Down

0 comments on commit 5455b8d

Please sign in to comment.