diff --git a/README.md b/README.md
index 75b8611..fd972af 100644
--- a/README.md
+++ b/README.md
@@ -23,85 +23,97 @@ yarn add vue-ari
```vue
-
+
+ Open Popover
+
+
+ Popover Content
+
```
## Styling
-Ari components are unstyled by default. That means you got some work to do.
+Ari components don't include styling by default. This gives you the ability to add styles however you like.
-It also means you are not bound to some opinionated styling.
-
-You have complete freedom in creating your own visual appearance from ari base components.
+### Example Using Tailwind
```vue
-
+
+ Open Popover
+
+
+ Popover Content
+
+```
-
+
```
diff --git a/examples/package.json b/examples/package.json
index 6e76a6e..cea9b49 100644
--- a/examples/package.json
+++ b/examples/package.json
@@ -8,7 +8,7 @@
"dependencies": {
"tailwindcss": "^1.5.2",
"vue": "^3.0.0-rc.1",
- "vue-ari": "^0.0.0"
+ "vue-ari": "^0.0.0-alpha.6"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.0.0-rc.1",
diff --git a/src/Popover/README.md b/src/Popover/README.md
new file mode 100644
index 0000000..3873b44
--- /dev/null
+++ b/src/Popover/README.md
@@ -0,0 +1,114 @@
+# Popover
+
+`Popover` is a non-modal dialog that is positioned near its disclosure. It is commonly used for displaying additional related content.
+
+## Installation
+
+```bash
+npm i vue-ari
+```
+
+or
+
+```bash
+yarn add vue-ari
+```
+
+## Usage
+
+```vue
+
+
+ Open Popover
+
+
+ Popover Content
+
+
+
+
+```
+
+## Styling
+
+Ari components don't include styling by default. This gives you the ability to add styles however you like.
+
+### Example Using Tailwind
+
+```vue
+
+
+ Open Popover
+
+
+ Popover Content
+
+
+
+
+```
+
+## Reusable Components
+
+It would get pretty verbose to add the same styling classes wherever you like to use a `Popover`. So the recommended way is wrapping Ari components inside your own base components and use them inside your app.
+
+```vue
+
+
+
+
+
+
+
+```