diff --git a/src/logo.svg b/src/logo.svg
deleted file mode 100644
index 9b1a049..0000000
--- a/src/logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/src/views/choosing-router-style.imba b/src/views/choosing-router-style.imba
index a419d3f..adfd070 100644
--- a/src/views/choosing-router-style.imba
+++ b/src/views/choosing-router-style.imba
@@ -45,7 +45,7 @@ tag view-choosing-router-style
"URL variables are old standard which is going out of common use - considered ugly to read. Still the good thing is
it's widely supported. It's supported by browsers and backends. It's great oportunity. You could use it in many ways.
- For example copy values from URL to your API requests. This would give easy way (for authorised only) to modify behaviour of your backend.
+ For example copy values from URL to your API requests. This would give an easy way (for authorised only) to modify behaviour of your backend.
Helpful for testing, debugging or switching feature flags."
diff --git a/src/views/installation.imba b/src/views/installation.imba
index b7227d3..e2fc50e 100644
--- a/src/views/installation.imba
+++ b/src/views/installation.imba
@@ -26,5 +26,6 @@ tag view-installation
"""
"3. "
- "There is no three. "
- "Everything is already set."
+ "Add "
+ <.bordered> ""
+ " tag somewhere in your layout."
diff --git a/src/views/usage.imba b/src/views/usage.imba
index f68602a..729b4cf 100644
--- a/src/views/usage.imba
+++ b/src/views/usage.imba
@@ -12,15 +12,52 @@ tag view-usage
+ <$router.bordered> ""
+ " displays current view."
+
+
+ "The simplest application would look like this:"
+
+ """
+ imba{ '.'}mount { 'pro-router'}
+ """
+
+ "A bit more complex example:"
+
+ """
+ { 'my-app'}
+ { 'self'}
+ { "pro-ref-f{ ' view'}{ '='}{ 'v'}"} { 'for'} v { 'in'} { 'R'}{ '.'}views { 'render menu'}
+ { "pro-router"} { 'slot for current view'}
+
+ { 'view-hello'}
+ { 'self'} 'Hello World!'
+
+ { 'view-another-view'}
+ { 'self'} 'This is another view.'
+
+ imba{ '.'}mount { 'my-app'}
+ """
+
+
+ <{ "example-{R.param('subview')}" }>
+
+ "Notice that definition of a component with prefix {<.bordered> 'view-'} implies that there's a route."
+
+ "You can override current view and display another. For example defined by param from url:"
+
+ "pro-router{ ' view'}{ '='}{ 'R'}{ '.'}param{<.c-br> '('}{ 'subview'}{<.c-br> ')'}"
+
+
<$ref.bordered> ""
" generates a link with a proper address hooked to the router."
@@ -102,43 +139,6 @@ tag view-usage
'Good night'
'Switch disabled'
-
- <$router.bordered> ""
- " displays current view."
-
-
- "The simplest application would look like this:"
-
- """
- imba{ '.'}mount { 'pro-router'}
- """
-
- "A bit more complex example:"
-
- """
- { 'my-app'}
- { 'self'}
- { "pro-ref-f{ ' view'}{ '='}{ 'v'}"} { 'for'} v { 'in'} { 'R'}{ '.'}views { 'render menu'}
- { "pro-router"} { 'slot for current view'}
-
- { 'view-hello'}
- { 'self'} 'Hello World!'
-
- { 'view-another-view'}
- { 'self'} 'This is another view.'
-
- imba{ '.'}mount { 'my-app'}
- """
-
-
- <{ "example-{R.param('subview')}" }>
-
-
- "You can override current view and display another. For example defined by param from url:"
-
- "pro-router{ ' view'}{ '='}{ 'R'}{ '.'}param{<.c-br> '('}{ 'subview'}{<.c-br> ')'}"
-
-
"Pro-router tips"
"Further reading is not about functionalities provided by this package itself but the ones you will be using straight from pro-router."