From 4094a495cfd9462be140d58ecfe93d92a7ad6da4 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Fri, 10 Jun 2016 19:47:23 -0700 Subject: [PATCH] New marketing copy on homepage (#7012) --- css/react.scss | 2 +- index.md | 24 +++++++++--------------- 2 files changed, 10 insertions(+), 16 deletions(-) diff --git a/css/react.scss b/css/react.scss index 0513b15e..29840dbf 100644 --- a/css/react.scss +++ b/css/react.scss @@ -340,8 +340,8 @@ h1, h2, h3, h4, h5, h6 { h3 { color: $darkColor; font-size: 24px; + line-height: 28px; font-weight: normal; - text-transform: uppercase; } p { font-size: 16px; diff --git a/index.md b/index.md index c5f94d4d..52dbc564 100644 --- a/index.md +++ b/index.md @@ -7,25 +7,19 @@ id: home
-

Just the UI

-

- Lots of people use React as the V in MVC. - Since React makes no assumptions about the rest of your technology stack, - it's easy to try it out on a small feature in an existing project. -

+

Declarative

+

React makes it painless to update your views when your data changes. Just return the views to display for each possible state, and React handles the updates.

+

Declarative views make your code more predictable, simpler to understand, and easier to debug.

-

Virtual DOM

-

- React abstracts away the DOM, giving a simpler programming model and better performance. React can also render on the server using Node, and it can power native apps using React Native. -

+

Component-Based

+

With React, create encapsulated components that manage their own state, then compose them to build complex UIs.

+

Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep your state out of the DOM.

-

Data flow

-

- React implements one-way reactive data flow which reduces boilerplate and is - easier to reason about than traditional data binding. -

+

Learn Once, Write Anywhere

+

We don't make assumptions about the rest of your technology stack – you can build new features in React without rewriting your existing code.

+

React can also render on the server using Node and power mobile apps using React Native.