Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tagline #4693

Merged
merged 1 commit into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading