diff --git a/README.md b/README.md
index e1100db9..22e19f92 100644
--- a/README.md
+++ b/README.md
@@ -1,33 +1,62 @@
-# tabler-react
+# Tabler React
->
+> Work in progress React implementation of the [Tabler Dashboard UI Kit](https://github.com/tabler/tabler)
-[](https://www.npmjs.com/package/tabler-react) [](https://standardjs.com)
+[](https://www.npmjs.com/package/tabler-react)   
-## Package Requirement
-
-Make sure you have [Node.js](https://nodejs.org/) 8+ and [npm](https://npmjs.com/) installed.
+**[View a demo](https://tabler.github.io/tabler-react/)**, **[track our progress towards version 1](https://github.com/tabler/tabler-react/projects/1)**, **[get involved](https://github.com/tabler/tabler-react/issues)** and **[chat to us on Slack](https://tabler-ui.slack.com/messages/CA55LDVHU/)**.
## Install
-```bash
-npm install --save tabler-react
-```
+Make sure you have [Node.js](https://nodejs.org/) 8+ and [npm](https://npmjs.com/) installed.
+
+`npm install --save tabler-react` or `yarn add tabler-react`
## Usage
```jsx
import React, { Component } from "react";
-import MyComponent from "tabler-react";
+import { Card, Button } from "tabler-react";
-class Example extends Component {
+class MyCard extends Component {
render() {
- return ;
+ return (
+
+
+ Card Title
+
+
+
+
+
+ );
}
}
```
+For more examples see the [demo website](https://tabler.github.io/tabler-react/)
+
+## Contributing
+
+[There are plenty of opputunities to get involved](https://github.com/tabler/tabler-react/issues). Pick an outstanding task, let us know what you are working on and fire away with any questions.
+
+The package is made up of 2 main folders:
+
+* /src contains all the Tabler React components
+* /example is our [create-react-app](https://github.com/facebook/create-react-app/) based demo website
+
+To setup and run a local copy:
+
+1. Clone this repo with `git clone https://github.com/tabler/tabler-react`
+2. Run `yarn` or `npm install` in the root folder
+3. Run `yarn` or `npm install` in the example folder
+4. In seperate terminal windows, run `yarn start` in the root and example folders.
+
+You should now be up and running with live browser reloading of the example website while you work on Tabler React components in the /src folder.
+
+When you're done working on your changes, submit a PR with the details and include a screenshot if you've changed anything visually.
+
## License
-MIT © [jonthomp](https://github.com/jonthomp) and [AaronCoplan](https://github.com/AaronCoplan)
+MIT © [jonthomp](https://github.com/jonthomp), [AaronCoplan](https://github.com/AaronCoplan) and [the contributors](https://github.com/tabler/tabler-react/graphs/contributors).