diff --git a/content/authors.yml b/content/authors.yml
index 5fd72964e..b5817e478 100644
--- a/content/authors.yml
+++ b/content/authors.yml
@@ -69,7 +69,7 @@ sebmarkbage:
url: https://twitter.com/sebmarkbage
sophiebits:
name: Sophie Alpert
- url: https://sophiealpert.com
+ url: https://sophiebits.com/
steveluscher:
name: Steven Luscher
url: https://twitter.com/steveluscher
diff --git a/content/blog/2018-03-01-sneak-peek-beyond-react-16.md b/content/blog/2018-03-01-sneak-peek-beyond-react-16.md
new file mode 100644
index 000000000..3ba92b999
--- /dev/null
+++ b/content/blog/2018-03-01-sneak-peek-beyond-react-16.md
@@ -0,0 +1,22 @@
+---
+title: "Sneak Peek: Beyond React 16"
+author: [sophiebits]
+---
+
+[Dan Abramov](https://twitter.com/dan_abramov) from our team just spoke at [JSConf Iceland 2018](https://2018.jsconf.is/) with a preview of some new features we've been working on in React. The talk opens with a question: "With vast differences in computing power and network speed, how do we deliver the best user experience for everyone?"
+
+Here's the video courtesy of JSConf Iceland:
+
+
+
+I think you'll enjoy the talk more if you stop reading here and just watch the video. If you don't have time to watch, a (very) brief summary follows.
+
+## About the Two Demos
+
+On the first demo, Dan says: "We've built a generic way to ensure that high-priority updates don't get blocked by a low-priority update, called **time slicing**. If my device is fast enough, it feels almost like it's synchronous; if my device is slow, the app still feels responsive. It adapts to the device thanks to the [requestIdleCallback](https://developers.google.com/web/updates/2015/08/using-requestidlecallback) API. Notice that only the final state was displayed; the rendered screen is always consistent and we don't see visual artifacts of slow rendering causing a janky user experience."
+
+On the second demo, Dan explains: "We've built a generic way for components to suspend rendering while they load async data, which we call **suspense**. You can pause any state update until the data is ready, and you can add async loading to any component deep in the tree without plumbing all the props and state through your app and hoisting the logic. On a fast network, updates appear very fluid and instantaneous without a jarring cascade of spinners that appear and disappear. On a slow network, you can intentionally design which loading states the user should see and how granular or coarse they should be, instead of showing spinners based on how the code is written. The app stays responsive throughout."
+
+"Importantly, this is still the React you know. This is still the declarative component paradigm that you probably like about React."
+
+We can't wait to release these new async rendering features later this year. Follow this blog and [@reactjs on Twitter](https://twitter.com/reactjs) for updates.
diff --git a/content/community/conferences.md b/content/community/conferences.md
index bbea505a5..d7b06c2e6 100644
--- a/content/community/conferences.md
+++ b/content/community/conferences.md
@@ -11,6 +11,17 @@ Do you know of a local React.js conference? Add it here! (Please keep the list c
## Upcoming Conferences
+### ReactFest 2018
+March 8-9 in London, UK
+
+[Website](https://reactfest.uk/) [Twitter](https://twitter.com/ReactFest)
+
+### Reactathon 2018
+March 20-22 in San Francisco, USA
+
+[Website](https://www.reactathon.com/) [Twitter](https://twitter.com/reactathon)
+
+
### React Native Camp UA 2018
March 31 in Kiev, Ukraine
@@ -26,6 +37,12 @@ April 24-26 in Helsinki, Finland
[Website](https://react-finland.fi/) - [Twitter](https://twitter.com/ReactFinland)
+### 2018
+April 28 in Sofia, Bulgaia
+
+[Website](http://react-not-a-conf.com/) - [Twitter](https://twitter.com/reactnotaconf) - [Facebook](https://www.facebook.com/groups/1614950305478021/)
+
+
### ReactEurope 2018
May 17-18 in Paris, France
@@ -41,6 +58,11 @@ August 16-17 in Salt Lake City, Utah USA
[Website](http://www.reactrally.com) - [Twitter](https://twitter.com/reactrally)
+### React Native EU 2018
+September 5-6 in Wrocław, Poland
+
+[Website](https://react-native.eu) - [Twitter](https://twitter.com/react_native_eu) - [Facebook](https://www.facebook.com/reactnativeeu)
+
### ReactNext 2018
September 6 in Tel Aviv, Israel
diff --git a/content/community/examples.md b/content/community/examples.md
index 08cc02c41..3b5808f15 100644
--- a/content/community/examples.md
+++ b/content/community/examples.md
@@ -19,3 +19,4 @@ There are many example projects created by the React community. Feel free to add
* **[Product Comparison Page](https://github.com/Rhymond/product-compare-react)** Simple Product Compare page built in React
* **[Hacker News Clone React/GraphQL](https://github.com/clintonwoo/hackernews-react-graphql)** Hacker News clone rewritten with universal JavaScript, using React and GraphQL.
* **[Bitcoin Price Index](https://github.com/mrkjlchvz/bitcoin-price-index)** Simple bitcoin price index data from CoinDesk API.
+* **[Builder Book](https://github.com/builderbook/builderbook)** Open source web app to write and host documentation or sell books. Built with React, Material-UI, Next, Express, Mongoose, MongoDB.
diff --git a/content/community/podcasts.md b/content/community/podcasts.md
index d3c44c03e..0b91418b9 100644
--- a/content/community/podcasts.md
+++ b/content/community/podcasts.md
@@ -16,6 +16,8 @@ Podcasts dedicated to React and individual podcast episodes with React discussio
- [React 30](https://react30.com/) - A 30-minute podcast all about React (moved to [The React Podcast](http://reactpodcast.com)).
+- [React Native Radio](https://devchat.tv/react-native-radio)
+
## Episodes
- [CodeWinds Episode 4](http://codewinds.com/podcast/004.html) - Pete Hunt talks with Jeff Barczewski about React.
diff --git a/content/community/tools-starter-kits.md b/content/community/tools-starter-kits.md
index ed64e0d5d..bc418e84f 100644
--- a/content/community/tools-starter-kits.md
+++ b/content/community/tools-starter-kits.md
@@ -7,7 +7,7 @@ permalink: community/starter-kits.html
## Recommended by the React Team
-* **[Create React App](https://github.com/facebookincubator/create-react-app)** - An officially supported way to start a client-side React project with no configuration
+* **[Create React App](https://github.com/facebook/create-react-app)** - An officially supported way to start a client-side React project with no configuration
* **[Next.js](https://learnnextjs.com/)** - Framework for server-rendered or statically-exported React apps
* **[Gatsby](https://www.gatsbyjs.org/)** - Blazing-fast static site generator for React
* **[nwb](https://github.com/insin/nwb)** - A toolkit for React apps, libraries and other npm modules for the web
diff --git a/content/community/tools-ui-components.md b/content/community/tools-ui-components.md
index fbf3e6f2d..5fa8889fd 100644
--- a/content/community/tools-ui-components.md
+++ b/content/community/tools-ui-components.md
@@ -34,7 +34,7 @@ permalink: community/ui-components.html
* **[react-dropzone](https://github.com/felixrieseberg/React-Dropzone):** React Dropzone for File-Uploads
* **[react-forms](http://prometheusresearch.github.io/react-forms/):** Form rendering and validation for React
* **[react-highlight](https://github.com/akiran/react-highlight):** React component for syntax highlighting
-* **[react-image](https://github.com/yuanyan/react-image):** Like `` and Enhanced Image Component for React.
+* **[react-image](https://github.com/mbrevda/react-image):** Like `` and Enhanced Image Component for React.
* **[react-input-autosize](https://github.com/JedWatson/react-input-autosize):** Like `` but resizes automatically to fit all its content.
* **[react-intense](https://github.com/brycedorn/react-intense):** A component for viewing large images up close
* **[react-joyride](https://github.com/gilbarbara/react-joyride):** Create walkthroughs and guided tours for your ReactJS apps.
diff --git a/content/docs/accessibility.md b/content/docs/accessibility.md
index 8264ef311..eafc30191 100644
--- a/content/docs/accessibility.md
+++ b/content/docs/accessibility.md
@@ -75,7 +75,7 @@ function ListItem({ item }) {
return (
<>
{item.term}
-
{item.description}
>
+
{item.description}
>
);
}
@@ -133,7 +133,7 @@ Also use landmark elements and roles, such as `` and `