diff --git a/docusaurus/website/pages/en/index.js b/docusaurus/website/pages/en/index.js
index 323266ed..f54cca2d 100755
--- a/docusaurus/website/pages/en/index.js
+++ b/docusaurus/website/pages/en/index.js
@@ -145,6 +145,25 @@ const GetStarted = props => (
);
+const Update = props => (
+
+ {[
+ {
+ image: imgUrl('update.png'),
+ imageAlign: 'left',
+ },
+ {
+ title: 'Easy-to-maintain toolchain',
+ content: `Keeping a build toolchain up to date with the latest and greatest can be a daunting and time-consuming
+ task for even the most seasoned developer. Create React App extracts all of those concerns into a single
+ dependency, which are **easy to update** and **battle tested by thousands**
+
+ npm install react-scripts@latest`,
+ },
+ ]}
+
+);
+
class Index extends React.Component {
render() {
const language = this.props.language || '';
@@ -155,6 +174,7 @@ class Index extends React.Component {
+
);
diff --git a/docusaurus/website/static/img/update.png b/docusaurus/website/static/img/update.png
new file mode 100644
index 00000000..a428f813
Binary files /dev/null and b/docusaurus/website/static/img/update.png differ