diff --git a/docs/3.0/search.md b/docs/3.0/search.md
index dad2dd69..1b0e5c0e 100644
--- a/docs/3.0/search.md
+++ b/docs/3.0/search.md
@@ -108,7 +108,7 @@ By default, the search results will be displayed as text. By default search titl
-You may configure that to be something more complex using the `card -> title` option. That will display it as the title of the search result.
+You may configure that to be something more complex using the `item -> title` option. That will display it as the title of the search result.
```ruby{6}
class Avo::Resources::Post < Avo::BaseResource
@@ -129,7 +129,7 @@ end
-You might want to show more than just the title in the search result. Avo provides the `card -> description` option to add some more information.
+You might want to show more than just the title in the search result. Avo provides the `item -> description` option to add some more information.
```ruby{7}
class Avo::Resources::Post < Avo::BaseResource
@@ -152,7 +152,7 @@ end
-You may improve the results listing by adding an image to each search result. You do that by using the `card -> image_url` attribute that is an url to a image.
+You may improve the results listing by adding an image to each search result. You do that by using the `item -> image_url` attribute that is an url to a image.
```ruby{8}
class Avo::Resources::Post < Avo::BaseResource
@@ -174,7 +174,7 @@ end
-The image you add to a search result can have a different format based on what you set on the `card -> image_format` attribute. You may choose between three options: `:square`, `:rounded` or `:circle`.
+The image you add to a search result can have a different format based on what you set on the `item -> image_format` attribute. You may choose between three options: `:square`, `:rounded` or `:circle`.
```ruby{9}
class Avo::Resources::Post < Avo::BaseResource
@@ -248,7 +248,7 @@ end
When a resource has the `search` attribute with a valid configuration, a new search input will be displayed on the `Index` view.
-
+
## Global search
@@ -258,7 +258,7 @@ Avo also has a global search feature. It will search through all the resources t
You open the global search input by clicking the trigger on the navbar or by using the CMD + K keyboard shortcut (Ctrl + K on Windows).
-
+
### Hide the global search
diff --git a/docs/public/assets/img/search/global_search_trigger.jpg b/docs/public/assets/img/search/global_search_trigger.jpg
index b9731c01..2f74e9aa 100644
Binary files a/docs/public/assets/img/search/global_search_trigger.jpg and b/docs/public/assets/img/search/global_search_trigger.jpg differ
diff --git a/docs/public/assets/img/search/resource_search.jpg b/docs/public/assets/img/search/resource_search.jpg
index 11f7091a..3c84224f 100644
Binary files a/docs/public/assets/img/search/resource_search.jpg and b/docs/public/assets/img/search/resource_search.jpg differ