diff --git a/.gitignore b/.gitignore
index 3305958..c2ccff6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ index.html
.remote-assets
.idea/
components.d.ts
+example-export
diff --git a/.npmignore b/.npmignore
index e0e41d3..81004c4 100644
--- a/.npmignore
+++ b/.npmignore
@@ -1,3 +1,4 @@
screenshots
.github
-dist
\ No newline at end of file
+dist
+example-export
\ No newline at end of file
diff --git a/README.md b/README.md
index c8b52d0..044d288 100644
--- a/README.md
+++ b/README.md
@@ -130,11 +130,12 @@ Dark | Light
Usage:
-- Add `text-image` in the layout field.
+- Add `text-image` in the layout field and add the image url on the `media` field.
```
---
layout: text-image
+media: 'https://media.giphy.com/media/VkMV9TldsPd28/giphy.gif'
---
```
@@ -142,8 +143,67 @@ Dark | Light
:-------------------------:|:-------------------------:
![textImageDark](./screenshots/dark/text-image.png) | ![textImageLight](./screenshots/light/text-image.png)
+- Add `reverse:true` to reverse the order of the layout
+
+
+```
+---
+layout: text-image
+media: 'https://media.giphy.com/media/VkMV9TldsPd28/giphy.gif'
+reverse: true
+---
+```
+Dark | Light
+:-------------------------:|:-------------------------:
+![textImageDark](./screenshots/dark/text-image-reverse.png) | ![textImageLight](./screenshots/light/text-image-reverse.png)
+---
+
+### Text Window `text-window`
+
+Usage:
+
+- Add `text-window` in the layout field.
+
+```
+---
+layout: text-window
+---
+```
+
+Dark | Light
+:-------------------------:|:-------------------------:
+![textWindowDark](./screenshots/dark/text-window.png) | ![textWindowLight](./screenshots/light/text-window.png)
+
+- Add `reverse:true` to reverse the order of the layout
+
+
+```
+---
+layout: text-window
+reverse: true
+---
+```
+Dark | Light
+:-------------------------:|:-------------------------:
+![textWindowDark](./screenshots/dark/text-window-reverse.png) | ![textWindowLight](./screenshots/light/text-window-reverse.png)
+
+To set the content inside the window console, just use the syntax sugar `::window::` for slot name:
+
+```
+---
+layout: text-window
---
+# Consoles
+
+Use code snippets and get the highlighting directly into a nice looking window!
+
+::window::
+
+I go inside the window
+
+```
+
## Components
This theme provides the following components:
@@ -160,6 +220,20 @@ To use it you just need to add it to your `examples.md` like this:
Say hi at
+
+
+
+
+