{"componentChunkName":"component---src-templates-post-template-js","path":"/es/resources/4-advantages-of-hexagonal-architecture/","result":{"data":{"storyblokEntry":{"id":"storyblokentry-74393022-es","name":"4 Advantages of Hexagonal Architecture","content":"{\"seo\":{\"_uid\":\"a1ce7d61-95d1-44b5-847c-9e6d0628c888\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"60231617-03f6-4a31-87bd-9e51b1b4f6ee\",\"title\":\"4 Advantages of Hexagonal Architecture \",\"topic\":{\"name\":\"Tech Talks\",\"created_at\":\"2021-06-14T12:51:00.144Z\",\"published_at\":\"2021-06-14T13:11:02.322Z\",\"id\":55678622,\"uuid\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"content\":{\"seo\":{\"_uid\":\"ca44d121-d7f9-412f-af60-1f34934d5a46\",\"title\":\"Tech Talks | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"732033d3-5e0e-4ba7-983e-02058020595e\",\"component\":\"topic\"},\"slug\":\"tech-talks\",\"full_slug\":\"resources/topics/tech-talks\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"181160e3-821d-40da-a7fb-a850d43ea099\",\"first_published_at\":\"2021-06-14T12:51:04.620Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/tech-talks\",\"translated_slugs\":[{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"es\"}]},\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Change is the one thing all programmers have to face in their work lives. We make changes every day, \",\"type\":\"text\"},{\"text\":\"codes move very fast to unknown destinations\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", and frequently one system change can break elements in a different system.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"For example, is it possible to change the shape of our domain without breaking the modules that rely on it? And in a code, can we change a mapper to make a module work without modifications even if we completely change our domain model?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer to these questions is “yes”, it is possible, thanks to \",\"type\":\"text\"},{\"text\":\"hexagonal architecture\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hexagonal Architecture, also known as “\",\"type\":\"text\"},{\"text\":\"Ports and Adapters Pattern”,\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://alistair.cockburn.us/hexagonal-architecture/\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" is an \",\"type\":\"text\"},{\"text\":\"architectural pattern\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" exposed by \",\"type\":\"text\"},{\"text\":\"Alistair Cockburn\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" which applies the Anti-corruption Layer DDD Pattern in a very effective way. The concept is very simple: the \",\"type\":\"text\"},{\"text\":\"domain model\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" communicates with the external world using i\",\"type\":\"text\"},{\"text\":\"nterfaces as ports\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Every external module that wants to communicate with the domain builds an adapter and attaches it to the port.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"What is an \",\"type\":\"text\"},{\"text\":\"external module\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? It’s a database, it’s a REST API, it’s a mail sender, it’s a queue, it’s everything that is not part of our core domain. We can separate them into two types: \",\"type\":\"text\"},{\"text\":\"driving\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\" and \",\"type\":\"text\"},{\"text\":\"driven\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\". The \",\"type\":\"text\"},{\"text\":\"driving \",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\"modules are the ones for which we expose functionalities (ex: REST APIs, queue to expose events) the \",\"type\":\"text\"},{\"text\":\"driven\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\" are the ones used to perform actions (ex: database to persist data, mail sender, queue to receive events). An anti-corruption layer must be inserted between these systems and our core domain in order to keep our business logic decoupled from external logic and make sure that the internal domain and external entities do not depend on each other. Separating objects in the adapters will make it easier to map the domain’s internal representation into the external world’s objects.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"image\",\"attrs\":{\"alt\":\"\",\"src\":\"https://a.storyblok.com/f/111801/1232x727/c352f659cf/hexagonal-architecture-for-future.jpg\",\"title\":\"\"}}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hexagonal architecture will decouple your business logic from the outside world. It makes it possible to change internal representation without breaking interactions with external modules and makes it possible to change technology or add new modules that will not affect your internal representation.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"4 advantages\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of working with hexagonal architecture:\",\"type\":\"text\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":1},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Delaying decisions about technologies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"italic\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\"Hexagonal architecture makes it possible to decide to start writing a project and actually build and test it while postponing technology decisions that would involve knowledge and data that may not be available at the beginning of a project.\",\"type\":\"text\"}]},{\"type\":\"paragraph\"}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Changing technology with a lower impact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"italic\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\"Thanks to hexagonal architecture, tech companies can decide to start with the simplest technology (like the classic relational database) and then switch to another by simply changing the adapter.\",\"type\":\"text\"}]},{\"type\":\"paragraph\"}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Test business logic in isolation from external systems\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"italic\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\"Thanks to interfaces, it is possible to build stub or mock to test your core domain and your business logic isolated from external systems. This will confirm that any change in technology will not impact the business logic.\",\"type\":\"text\"}]},{\"type\":\"paragraph\"}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Reshape your internal domain with less effort on external systems\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"italic\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"italic\"}]},{\"text\":\"At a certain point, the internal domain will evolve. If the tech team’s been able to successfully decouple and keep on external adapters only the subset of data they need, this should come with a lower price and less effort.\",\"type\":\"text\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"text\":\"However, the only drawback is that this kind of separation will cost the tech team more effort when building interfaces and mapping different domains.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Is hexagonal architecture really useful? The power of decoupling is often underestimated. Think about this scenario: tomorrow a new disruptive technology that crashes out old relational databases will arrive. With hexagonal architecture in place the tech team just needs to rewrite their db adapter without touching domain objects or the business logic. Without it, a series of problems and unexpected circumstances could arise, which could introduce regressions in the code.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Decoupling comes with a price, like insurance against future changes. The cost of changing a project with hexagonal architecture will be incomparably lower than the cost needed to adapt a domain against too many technology modifications.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hexagonal architecture isn’t useful for projects that are guaranteed never to change - in which case paying a price for decoupling is a waste - but seriously, do any of us know of projects that aren't bound to change at some point?\",\"type\":\"text\"}]}]},\"hero_image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"postAuthor\":[{\"name\":\"Andrea Bersani\",\"created_at\":\"2021-09-29T13:32:37.561Z\",\"published_at\":\"2021-09-29T13:33:14.301Z\",\"id\":74388181,\"uuid\":\"42c86b0a-0e7d-4498-ae23-6cad949b1c46\",\"content\":{\"_uid\":\"bcacd5f9-c350-4f94-8f46-2ecd13cee6ed\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Andrea Bersani\",\"component\":\"author\"},\"slug\":\"andrea-bersani\",\"full_slug\":\"authors/andrea-bersani\",\"sort_by_date\":null,\"position\":-190,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"2c34d519-c805-4687-9091-050d2da08be2\",\"first_published_at\":\"2021-09-29T13:33:14.301Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/andrea-bersani\",\"translated_slugs\":[{\"path\":\"authors/andrea-bersani\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/andrea-bersani\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/andrea-bersani\",\"name\":null,\"lang\":\"es\"}]}],\"previewImage\":{\"id\":2967854,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/5fa9303df4/hexagonal.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How content can support a tech product launch\",\"created_at\":\"2021-08-27T09:56:32.491Z\",\"published_at\":\"2021-09-03T14:01:32.187Z\",\"id\":68484423,\"uuid\":\"6bd33d6e-b1d5-4dd0-ba59-00b8daee7702\",\"content\":{\"seo\":{\"_uid\":\"37d81ec9-25e8-4716-8766-c506f9d9e145\",\"title\":\"How content can support a tech product launch\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"1ad8f7f4-e545-4b49-8d92-79981b9a8575\",\"title\":\"How content can support a tech product launch\",\"topic\":{\"name\":\"Tech Talks\",\"created_at\":\"2021-06-14T12:51:00.144Z\",\"published_at\":\"2021-06-14T13:11:02.322Z\",\"id\":55678622,\"uuid\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"content\":{\"seo\":{\"_uid\":\"ca44d121-d7f9-412f-af60-1f34934d5a46\",\"title\":\"Tech Talks | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"732033d3-5e0e-4ba7-983e-02058020595e\",\"component\":\"topic\"},\"slug\":\"tech-talks\",\"full_slug\":\"resources/topics/tech-talks\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"181160e3-821d-40da-a7fb-a850d43ea099\",\"first_published_at\":\"2021-06-14T12:51:04.620Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/tech-talks\",\"translated_slugs\":[{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"es\"}]},\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Tech product launches are not easy. No matter how much a team plans upfront, launches will always involve changes in directions and new areas of opportunity to explore.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A strong product launch strategy has to be built on \",\"type\":\"text\"},{\"text\":\"education\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In addition to placing a new offering on the market, the brand needs to act as a guide.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Audiences might feel lost or unsure of how to get started with your new product.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"That’s where \",\"type\":\"text\"},{\"text\":\"content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" comes into play. Through newsletters, blog articles, customer stories, infographics, guides, demos, and other assets, content can help position a company and help foster a better, more thorough \",\"type\":\"text\"},{\"text\":\"customer conversation\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Here are a few \",\"type\":\"text\"},{\"text\":\"steps \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"with\",\"type\":\"text\"},{\"text\":\" initiatives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that can support a product marketing strategy and help make a product launch successful:\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Step 1: Customer development\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"A strong product launch cannot be built without full customer knowledge. The more you know them, the easier it is to build a product that addresses their pain points. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"To get that knowledge, it isn’t necessary to interview hundreds of people to conduct market research. Reaching out to 15-20 customers could give you the information you need to build a product marketing plan for the \",\"type\":\"text\"},{\"text\":\"launch of a new product\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Step 2: Identify Points of Friction\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"When customers drop from your conversion funnel (mostly after the launching of a new Product), it usually means that there are different problems in understanding the flows and processes. For example, the product messaging \",\"type\":\"text\"},{\"text\":\"lacks clarity\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or the process is \",\"type\":\"text\"},{\"text\":\"confusing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". But \",\"type\":\"text\"},{\"text\":\"content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" can help overcome those challenges.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When product communication is misleading or not clear enough, review your messaging. If processes are confusing, create content such as guides, demos, or even better, an onboarding process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"text\":\"By understanding the points of friction in your sales process, you can create and develop the right \",\"type\":\"text\"},{\"text\":\"collateral\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". If audiences are skeptical about the ROI of your product, sharing customer stories will enlighten them. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"In other words, creating content will put you in control.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Step 3: Identify the Growth Levers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Go to your sales team and find out how potential customers are \",\"type\":\"text\"},{\"text\":\"learning\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" about your company. Then talk to the support team to learn how customers are \",\"type\":\"text\"},{\"text\":\"engaging\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with product information.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Thanks to content, you can \",\"type\":\"text\"},{\"text\":\"significantly improve\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" these relationships and communication points. These communication touchpoints can add value to your product by creating the right informative content customized for every stage of the funnel.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Step 4: Learn and adapt\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Once you cover Steps 1 & 2 you’ll be able to reassess your content marketing assumptions, uncover new areas of focus, and identify areas where messaging could be a lot stronger.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Almost every company experiences a \",\"type\":\"text\"},{\"text\":\"learning curve\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" when \",\"type\":\"text\"},{\"text\":\"launching a new\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"product\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", which is immensely helpful. Learning is the best way to feel challenged to create the best product, messaging, positioning, and content assets possible.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Start by examining the areas of strength, before addressing the rest. As you continue to \",\"type\":\"text\"},{\"text\":\"develop\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" your strategy and \",\"type\":\"text\"},{\"text\":\"learn\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", you will also spot new areas of opportunity for your content and messaging.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"Start small, learn as much as you can, and grow.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Content to support your product communication\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Content puts you in control and is crucial communication support. The top three content types to support your \",\"type\":\"text\"},{\"text\":\"product communication tactics\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" include:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1. Customer success stories\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Customers are now research-driven and keen to find solutions that perfectly fit their needs. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"That’s where customer success stories come into play. They’re educational assets that show how similar customers have gained \",\"type\":\"text\"},{\"text\":\"value\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"from your\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"product\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", and how your solution helped them achieve their goals.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Strong stories should have the following qualities:\",\"type\":\"text\"}]},{\"type\":\"bullet_list\",\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"They are narrative-driven and do not have a sales pitch frame.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"They are customer-centric and focus on your customers’ pain points rather than your product.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"They incorporate customers’ ROI and key performance metrics.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer stories’ assets can be used for a variety of channels, from website resources and marketing campaigns to direct customer communications.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"2. Internal Newsletters\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Internal newsletters can share the learnings of the marketing, sales, and customer-facing teams and \",\"type\":\"text\"},{\"text\":\"communicate information\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" about new initiatives, releases and launches.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Building customer conversation is key, but internal cross-team communication is important as well. Your teams need to push in the \",\"type\":\"text\"},{\"text\":\"same direction\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and be excited about initiatives, such as new product launches. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Product launches should be clearly communicated to every company department, including product development and positioning. Moreover, internal communication is important to manage expectations and update the teams with the latest knowledge.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"3. Onboarding Materials\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Communicating a new product can be tricky, especially if it includes a new complex process or flow. It is therefore important to help customers\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"learn and understand\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" your product and keep them engaged. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Provide guidance, and make the \",\"type\":\"text\"},{\"text\":\"onboarding process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" easy, with the support of \",\"type\":\"text\"},{\"text\":\"assets\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" specifically designed for the sales team, account management and customer support teams.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A well-managed product communication strategy is essential to help customers learn about your product, \",\"type\":\"text\"},{\"text\":\"understand its value and engage with it\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]}]},\"hero_image\":{\"id\":2806974,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d24825f442/how-content-can-help.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Daniele Tognetti\",\"created_at\":\"2021-08-27T09:51:48.240Z\",\"published_at\":\"2021-08-27T09:51:58.277Z\",\"id\":68484404,\"uuid\":\"45bb221c-9dad-4171-aa98-3477e58540fd\",\"content\":{\"_uid\":\"a5c16477-0b8a-4834-93d3-feca1043ad8e\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Daniele Tognetti\",\"component\":\"author\"},\"slug\":\"daniele-tognetti\",\"full_slug\":\"authors/daniele-tognetti\",\"sort_by_date\":null,\"position\":-140,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"33f05f3f-bf18-4a43-83ee-a4450d42325f\",\"first_published_at\":\"2021-08-27T09:51:58.277Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/daniele-tognetti\",\"translated_slugs\":[{\"path\":\"authors/daniele-tognetti\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/daniele-tognetti\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/daniele-tognetti\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2806973,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/613fe9e554/how-content-can-help.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"4 Proven Reasons to Partner with a Start-Up\",\"created_at\":\"2021-08-09T10:18:21.840Z\",\"published_at\":\"2021-08-10T08:33:33.373Z\",\"id\":65219538,\"uuid\":\"56722479-d1e6-4013-bae2-a5ea14d60645\",\"content\":{\"seo\":{\"_uid\":\"5da67175-26f3-466a-b881-5d50f890380a\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"bb98add6-4765-4452-8498-7f723a9958af\",\"title\":\"4 Proven Reasons to Partner with a Start-Up\",\"topic\":{\"name\":\"Start-up World\",\"created_at\":\"2021-06-14T12:51:18.263Z\",\"published_at\":\"2021-06-14T13:10:39.695Z\",\"id\":55678624,\"uuid\":\"8c2c5899-7568-4f42-8f93-87832b3ef6aa\",\"content\":{\"seo\":{\"_uid\":\"f1db19b1-caa0-44ab-a72d-7a214320f9fa\",\"title\":\"Start-up World | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"7993a0a2-aa42-4005-8d04-7d34349bce5c\",\"component\":\"topic\"},\"slug\":\"start-up-world\",\"full_slug\":\"resources/topics/start-up-world\",\"sort_by_date\":null,\"position\":-30,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"b77384ff-6454-432d-b771-fdcbc3289116\",\"first_published_at\":\"2021-06-14T12:51:23.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/start-up-world\",\"translated_slugs\":[{\"path\":\"resources/topics/start-up-world\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/start-up-world\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/start-up-world\",\"name\":null,\"lang\":\"es\"}]},\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Every day around the world, technology vendors send thousands of commercial proposals to be evaluated and considered. \",\"type\":\"text\"},{\"text\":\"Partnering and purchasing solutions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" from other companies is a \",\"type\":\"text\"},{\"text\":\"vital part\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of how our economy operates on a daily basis. As this is something so familiar to many of us, I often get the question: \",\"type\":\"text\"},{\"text\":\"why should we partner with a start-up?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" With the growth of larger technology companies over the past couple of years, isn’t it safer to choose to work with a larger, bigger and more established company?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In many cases, the answer to this question is no. Depending on your company’s specific needs, start-ups can provide a series of benefits and advantages that larger organizations cannot. Here are four important reasons why partnering with a start-up can work to a company’s advantage: \",\"type\":\"text\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":1},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Agility and speed: \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Smaller start-up companies are by definition...small. Having less resources and headcount might sometimes be seen as a disadvantage, but in many cases it is a \",\"type\":\"text\"},{\"text\":\"blessing in disguise\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Looking for a quote from the sales team? Having trouble and needing to contact customer support? Wondering what the product roadmap is? These are all important questions that customers have. At larger technology companies, answering a ticket can take multiple days, let alone actioning feedback regarding the product roadmap or providing visibility on pricing. \",\"type\":\"text\"},{\"text\":\"Start-ups can tackle all of these issues faster\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", as they have a \",\"type\":\"text\"},{\"text\":\"smaller organizational footprint\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and require the alignment of \",\"type\":\"text\"},{\"text\":\"less people\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" for every decision. For final customers, this means \",\"type\":\"text\"},{\"text\":\"less time spent on administrative burdens\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", which in turn can be used to \",\"type\":\"text\"},{\"text\":\"unlock all the benefits their product can offer them.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Innovation:\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" Many young tech companies are \",\"type\":\"text\"},{\"text\":\"disrupting a market category\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or in some cases, even creating a new one. Start-ups are not anchored down by how things currently are, and they focus on how things \",\"type\":\"text\"},{\"text\":\"should be\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\". By partnering with them, companies can \",\"type\":\"text\"},{\"text\":\"access a completely new set of technologies, features and enhancements\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that can give them a competitive advantage over their competitors. Partnering with a start-up can help you \",\"type\":\"text\"},{\"text\":\"break free from the weights\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that are currently holding you down, spurring \",\"type\":\"text\"},{\"text\":\"innovation and growth\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" within your organization. \",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Commitment:\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" For a start-up, every customer counts. First, the number of clients in their portfolios is smaller with respect to larger players. Most importantly, start-up employees are wildly \",\"type\":\"text\"},{\"text\":\"committed\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" — they are eager to make their company’s mission and vision a reality. They will go to great lengths to provide every single customer with the \",\"type\":\"text\"},{\"text\":\"highest level of service\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" for \",\"type\":\"text\"},{\"text\":\"each part of the buying journey\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". This type of attention is much harder to get from larger vendors or players that have thousands - even millions - of different customers, and prioritize their efforts and resources on the customers with the biggest budgets. \",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Flexibility:\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" Choosing a start-up as a vendor can also give companies the \",\"type\":\"text\"},{\"text\":\"margin of flexibility\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that long-established entities so often lack. This can come across in many different ways. For example, a smaller vendor is more likely to provide \",\"type\":\"text\"},{\"text\":\"advantageous commercial conditions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" (discounts, payment terms, etc.) than a larger player. Start-ups are also more likely to \",\"type\":\"text\"},{\"text\":\"welcome input from customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" who wish to have their say in a \",\"type\":\"text\"},{\"text\":\"product roadmap\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and look for \",\"type\":\"text\"},{\"text\":\"tailor-made product feature developments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" able to meet their very own specific needs and problems. Working with a partner \",\"type\":\"text\"},{\"text\":\"willing to adapt and keep an open mind\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" often proves to be a total \",\"type\":\"text\"},{\"text\":\"game-changer\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", and you and your team will \",\"type\":\"text\"},{\"text\":\"reap its benefits\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" for years to come. \",\"type\":\"text\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Find out how our \",\"type\":\"text\"},{\"text\":\"start-up for visual content production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" could be the partner you’ve always looked for. Request a demo now!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"35d7bc55-7cfd-4842-a7e0-3fb3dea0db6f\",\"body\":[{\"_uid\":\"i-8c52fe7f-aa4e-4348-a8df-fdf919945297\",\"type\":\"default\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2703341,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/e177b65380/4-reasons-to-partner-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Ludovico Mastrocinque García\",\"created_at\":\"2021-08-09T10:24:05.866Z\",\"published_at\":\"2021-08-09T10:24:17.538Z\",\"id\":65221760,\"uuid\":\"946beb58-f51f-4c1c-b6cb-3b4cbbd96896\",\"content\":{\"_uid\":\"3262d84e-f1ff-439b-be50-a687f476ba25\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Ludovico Mastrocinque García\",\"component\":\"author\"},\"slug\":\"ludovico-mastrocinque-garcia\",\"full_slug\":\"authors/ludovico-mastrocinque-garcia\",\"sort_by_date\":null,\"position\":-130,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"9d354070-7319-47d3-b4ef-ec87fda830d1\",\"first_published_at\":\"2021-08-09T10:24:17.538Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/ludovico-mastrocinque-garcia\",\"translated_slugs\":[{\"path\":\"authors/ludovico-mastrocinque-garcia\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/ludovico-mastrocinque-garcia\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/ludovico-mastrocinque-garcia\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2703339,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/94dbfd79c4/4-reasons-to-partner-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Why Visuals Are So Powerful\",\"created_at\":\"2021-06-17T15:12:24.026Z\",\"published_at\":\"2021-06-23T09:57:16.576Z\",\"id\":56524988,\"uuid\":\"4df199be-a482-4b28-ad90-c1f317c28b0c\",\"content\":{\"seo\":{\"_uid\":\"d2800041-44fb-4290-8eda-4f8ae2721590\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"5bd68976-97de-42ac-8dbf-1e951544b506\",\"title\":\"Why Visuals Are So Powerful\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Jacopo Benedetti\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Photos are the undeniable “must” of our 21st century lives. Ten years ago, Instagram launched as a photo-based social media, yet most people didn’t know what it was and no one could have predicted its unbelievable popularity. Ten years ago,\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" online commerce worldwide\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" accounted for 572B$, but in  2020 that number surged to 4,2 trillion, and is expected  to reach 6,5 trillion by 2023. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In today’s economy, \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"e-commerce\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" has taken a place of choice in the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"global retail panorama\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", which experienced a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"substantial transformation\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" with the rise of the Internet in the late 90s. As digital touchpoints grow increasingly central to modern life, online transactions have become increasingly vital for people all over the world, turning into the bread-and-butter of many retails companies. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In this growing online ecosystem, visual content plays a central role. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Images and content drive and enable online transactions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Just stop for a second and think of what you bought last week on Amazon, Deliveroo, Airbnb, or any other e-commerce. Did you purchase a product, a meal, or an apartment? No, what you bought were images, online representations of those purchases. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Great quality pictures\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" push consumers to complete online transactions. But what makes a picture “good” enough to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"drive sales\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"? Behind what we consider a good picture, there's science. How's that? Yes! - According to Charles Darwin’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"On the Origins of Species\",\"type\":\"text\",\"marks\":[{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", the first pluricellular organisms on Earth started seeing the World before understanding what the world was. Eyes and vision were born deep in the oceans, in pluricellular organisms called trilobites, which used light as energy. That’s how vision was created 541 million years ago. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"That same organ (the eyes) went through several levels of improvement (thanks Charles for modelling it!) until around 85 million years ago, when the first primates further developed their brain functions and made a giant leap for humankind. They started making paintings in caves. The human first alphabet was created. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But what does any of this have to do with the worth of \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"professional photos\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"? That value is intrinsic to how our brain has developed over the past several hundred million years. From Darwin’s findings, it is safe to conclude that \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"vision\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and its connected brain functions, are 450 million years older than brain functions responsible for reading and writing. Neurophysiology explains that the centers for image processing in our brains lie very close to our amygdala and hypothalamus, two fascinating subcortical areas of our brains that are  responsible for our emotions, mood, and autonoetic conscience. In other words, our brains are much more skilled at \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"extracting information and making decisions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" by  \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"looking at images\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and visual content than they are at drawing conclusions from written material. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"And that’s how science sheds light on the famous saying that “a picture is worth 1000 words”. That's why companies worldwide invested and continue to  invest trillions of dollars to produce, use and analyze visual content to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"boost their e-commerce offer\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Visual content communicates information that is\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" processed faster\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" than any other communication method. For companies and consumers, pictures are a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"time-saver\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and when it comes to picking between visuals out there on the web, \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"professional shots\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" are what ultimately make the difference and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"drive sales\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Interested in finding out how our photo solutions can help your business? Request a demo now! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"67e05724-91a5-418a-b0b7-00785626fcd4\",\"body\":[{\"_uid\":\"i-b6a91a23-16d0-45a7-b53e-6216e6b76109\",\"type\":\"default\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2477644,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efba26211d/why-visuals-are-so-powerful.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"bda50f66-da3e-4467-ac17-76b75274bdcd\",\"previewImage\":{\"id\":2477643,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/0605d9a4f3/why-visuals-are-so-powerful.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"e1501352-79c5-4a30-a20e-34e4889a59c0\",\"bc44b448-1222-4d04-8614-6c55c716bbbd\",\"65a123ee-6e02-463f-a9b0-21c711f04b4b\"]},\"slug\":\"why-visuals-are-so-powerful\",\"full_slug\":\"resources/why-visuals-are-so-powerful\",\"sort_by_date\":null,\"position\":90,\"tag_list\":[\"Photographers\",\"e-commerce\",\"Visual content\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"05a3617b-2789-403a-b2de-5e7d1d785700\",\"first_published_at\":\"2021-06-17T15:15:31.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/why-visuals-are-so-powerful\",\"translated_slugs\":[{\"path\":\"resources/why-visuals-are-so-powerful\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/why-visuals-are-so-powerful\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/why-visuals-are-so-powerful\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Lucie Gautheron\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Why Brand Consistency Matters\",\"created_at\":\"2021-06-17T14:18:59.682Z\",\"published_at\":\"2021-06-25T09:02:49.209Z\",\"id\":56517102,\"uuid\":\"bc44b448-1222-4d04-8614-6c55c716bbbd\",\"content\":{\"seo\":{\"_uid\":\"de277365-a249-4639-a01f-56c21ead435e\",\"title\":\"Why Brand Consistency Matters?\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"8f39ad4f-263a-4c3a-9da4-7d4c941cf88a\",\"title\":\"Why Brand Consistency Matters\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Nicola Sterchele\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Brand consistency\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" is the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"golden key of online marketing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". It helps find \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"solutions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"to convert more\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and ultimately \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"increase sales\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". According to Lucidpress\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" research\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.lucidpress.com/pages/resources/report/the-impact-of-brand-consistency\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", creating a consistent brand can \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"increase revenue by 33%\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Consistency in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"message, visual identity, and tone of voice\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" accounts for a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strong customer experience\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and helps understand what they should expect, how to interact with a product, while encouraging them to come back and purchase some more. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"No matter the channel they operate on, brands should aim at providing a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"unified experience\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" in line with their branding elements, including core values, visual elements and messaging. This helps brands create a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strong bond with their audience\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", leading to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"long-term benefits for the company’s success\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But why is it so important? Nowadays, should brands pay more attention to creating excellent products or delivering the best-in-class services that clients need and want to buy? Why should brands invest time and effort in creating \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"“consistent”  customer experiences?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" Here are a few reasons:\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":1},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"First impression counts\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When looking to attract new users,\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" consider the impression they get\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" when they approach a brand website or app for the first time. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"According to research\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.8ways.ch/en/digital-news/visual-design-why-first-impressions-matter\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", it takes only 0.05 seconds for users to get a first impression of a brand website or product, even before navigating or interacting. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Brand marketers or user designers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" should make sure they provide an impactful and consistent experience across all the channels - from social media ads to website presentation or in-app purchases. This means creating a user journey with a unique experience - from colors to visuals and messaging. Imagine a brand that advertises a product as fun and trendy, but the actual user journey is boring and serious! It would lead potential customers to confusion and they might leave without purchasing what they were looking for! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":2},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Consumers trust brands they recognize. \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Many marketers invest time and energy to create a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"solid brand that users will remember\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", but brand recognition is not just about getting your name, claims or colors out there, it’s about \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"creating a set of elements \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"that users can find everywhere, with which they can connect on a personal level. Starbucks is a great example of that: customers can enjoy the exact same experience no matter where they are located - the menu is the same, the waiters make the same spelling mistakes when they write your name on a cup! Apply that rule to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"digital touchpoints\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", customers will be more likely to come back to e-commerce websites where each page includes the same information, with a consistent layout and visual options, making it easy to browse and click on “check out”! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Brand consistency is not just important to help users remember a brand or company, it is also useful to help create what is known as  “\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Aha moments\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.intercom.com/blog/understanding-your-aha-moments-and-putting-them-to-work/\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"bold\"},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"” -\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"feelings of delight\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"that reveal the product’s true value as remembered by the human brain. Research has long shown that purchases are more often driven by \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"emotions than logic\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". In fact, according to H\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"arvard Professor Gerald Zaltman, 95% of purchase decision-making takes place in the subconscious mind, \",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.inc.com/logan-chierotti/harvard-professor-says-95-of-purchasing-decisions-are-subconscious.html\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"driven by emotions and past positive experiences. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"type\":\"hard_break\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":3},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visuals enhance brand consistency \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By now, we know that consistency is fundamental to guarantee a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"brand’s success\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", including getting consistent visual content, but it is often challenging, especially for international companies dealing with different corporate branches or different external agencies, each with their own view of what the brand’s look and feel should be like.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOM comes into the game to help companies scale up visual production and keep consistent results everywhere, regardless of location, thanks to the standard guidelines created with the brands and our proprietary \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Visual Production Platform\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"/how-it-works\",\"uuid\":\"eb458f15-aef6-43bd-a41e-8ca67ecc60c0\",\"anchor\":null,\"target\":\"_blank\",\"linktype\":\"story\"}},{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"that standardizes the management and production of visuals. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interested in finding out more about keeping your brand consistent with visuals? Get in touch with us now!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"bfc447df-bbe1-45c5-b3ed-41f0aec7bb68\",\"body\":[{\"_uid\":\"i-214c70b3-39e6-442c-b284-f481eb04ecc2\",\"type\":\"\",\"title\":\"Contact us \",\"button\":{\"id\":\"f8bd4b8b-af10-4fb9-841f-fd30bd2b5aee\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/contact\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479398,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/45dcd5e80a/why-brand-consistency-matters.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Nicola Sterchele\",\"created_at\":\"2021-06-19T00:15:54.595Z\",\"published_at\":\"2021-06-19T00:15:58.612Z\",\"id\":56798044,\"uuid\":\"c14f2126-a68b-4cb0-9f25-edffd83b947a\",\"content\":{\"_uid\":\"ca026e02-3fb5-414f-b3d9-9f1e2691fd14\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Nicola Sterchele\",\"component\":\"author\"},\"slug\":\"nicola-sterchele\",\"full_slug\":\"fr/authors/nicola-sterchele\",\"sort_by_date\":null,\"position\":-50,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"90df2a69-d40e-4e78-9a6e-12544df132e9\",\"first_published_at\":\"2021-06-19T00:15:58.612Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/nicola-sterchele\",\"translated_slugs\":[{\"path\":\"authors/nicola-sterchele\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/nicola-sterchele\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/nicola-sterchele\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479396,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/cf33296eab/why-brand-consistency-matters.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lia Oliveira\",\"created_at\":\"2021-06-19T00:13:06.631Z\",\"published_at\":\"2021-06-19T00:13:53.920Z\",\"id\":56798040,\"uuid\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"content\":{\"_uid\":\"b0a7b63e-c3b5-4fcd-9c48-9b751a2acb05\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"content\":\"\",\"heading\":\"Lia Oliveira\",\"component\":\"author\"},\"slug\":\"lia-oliveira\",\"full_slug\":\"fr/authors/lia-oliveira\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"f64fc6ac-4873-4784-aa9d-7723942597ff\",\"first_published_at\":\"2021-06-19T00:13:14.664Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lia-oliveira\",\"translated_slugs\":[{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Giulia Antonelli\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Giulia Antonelli\",\"created_at\":\"2021-06-19T00:22:16.159Z\",\"published_at\":\"2021-06-19T00:22:19.177Z\",\"id\":56798050,\"uuid\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"content\":{\"_uid\":\"4125aaa9-63a3-4aaf-8047-4f3e70ff6698\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Giulia Antonelli\",\"component\":\"author\"},\"slug\":\"giulia-antonelli\",\"full_slug\":\"fr/authors/giulia-antonelli\",\"sort_by_date\":null,\"position\":-90,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"cda70a70-d94b-449f-a86e-6bcd55248454\",\"first_published_at\":\"2021-06-19T00:22:19.177Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/giulia-antonelli\",\"translated_slugs\":[{\"path\":\"authors/giulia-antonelli\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/giulia-antonelli\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/giulia-antonelli\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lia Oliveira\",\"created_at\":\"2021-06-19T00:13:06.631Z\",\"published_at\":\"2021-06-19T00:13:53.920Z\",\"id\":56798040,\"uuid\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"content\":{\"_uid\":\"b0a7b63e-c3b5-4fcd-9c48-9b751a2acb05\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"content\":\"\",\"heading\":\"Lia Oliveira\",\"component\":\"author\"},\"slug\":\"lia-oliveira\",\"full_slug\":\"fr/authors/lia-oliveira\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"f64fc6ac-4873-4784-aa9d-7723942597ff\",\"first_published_at\":\"2021-06-19T00:13:14.664Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lia-oliveira\",\"translated_slugs\":[{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"why-brand-consistency-matters\",\"full_slug\":\"fr/resources/why-brand-consistency-matters\",\"sort_by_date\":null,\"position\":110,\"tag_list\":[\"Short-term rental\",\"e-commerce\",\"Visual content\",\"Real estate\",\"Food\",\"Business insights\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"973d8b1b-9f49-4a83-b461-5a737b7c8ce0\",\"first_published_at\":\"2021-06-17T14:20:12.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/why-brand-consistency-matters\",\"translated_slugs\":[{\"path\":\"resources/why-brand-consistency-matters\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/why-brand-consistency-matters\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/why-brand-consistency-matters\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"4-proven-reasons-to-partner-with-a-start-up\",\"full_slug\":\"resources/4-proven-reasons-to-partner-with-a-start-up\",\"sort_by_date\":null,\"position\":-40,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"2eb7cac5-6b26-4560-88e3-c40dd8d92943\",\"first_published_at\":\"2021-08-09T10:26:59.840Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/4-proven-reasons-to-partner-with-a-start-up\",\"translated_slugs\":[{\"path\":\"resources/4-proven-reasons-to-partner-with-a-start-up\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/4-proven-reasons-to-partner-with-a-start-up\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/4-proven-reasons-to-partner-with-a-start-up\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"5 Keys to Create a Data-Driven, Customer-Centric Mindset \",\"created_at\":\"2021-07-22T13:19:51.076Z\",\"published_at\":\"2021-09-14T15:40:36.810Z\",\"id\":62053626,\"uuid\":\"d86e4ccf-75b6-4f90-b811-2dd8112c5678\",\"content\":{\"seo\":{\"_uid\":\"a407e7b4-3d8b-4262-878b-b0007267de9b\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"95f7836a-4e38-4d6a-936a-7ab08c6a6d62\",\"title\":\"5 Keys to Create a Data-Driven, Customer-Centric Mindset \",\"topic\":{\"name\":\"Tech Talks\",\"created_at\":\"2021-06-14T12:51:00.144Z\",\"published_at\":\"2021-06-14T13:11:02.322Z\",\"id\":55678622,\"uuid\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"content\":{\"seo\":{\"_uid\":\"ca44d121-d7f9-412f-af60-1f34934d5a46\",\"title\":\"Tech Talks | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"732033d3-5e0e-4ba7-983e-02058020595e\",\"component\":\"topic\"},\"slug\":\"tech-talks\",\"full_slug\":\"resources/topics/tech-talks\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"181160e3-821d-40da-a7fb-a850d43ea099\",\"first_published_at\":\"2021-06-14T12:51:04.620Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/tech-talks\",\"translated_slugs\":[{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"es\"}]},\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Creating products that have value for the user is what matters the most for a \",\"type\":\"text\"},{\"text\":\"Product Manager (PM). \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Understanding why users \",\"type\":\"text\"},{\"text\":\"interact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with the designed product, what problems they encounter most frequently, what their \",\"type\":\"text\"},{\"text\":\"needs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" are, is part of every PM's daily routine.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This is why at BOOM we have built a \",\"type\":\"text\"},{\"text\":\"customer-centric culture\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Here are \",\"type\":\"text\"},{\"text\":\"four main points\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" to take into consideration for a successful product team mindset: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Vanity 1, Usefulness 0.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Very often, the activities prioritized within the backlog are determined by internal mediation between the product team and business stakeholders, with confusing outcomes as the value for the user becomes mixed up with the value suggested by other departments. As a result, you will find yourself administering a list of features rather than a list of needs. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So the question is, what strategies create useful products that satisfy users’ needs?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer lies in focusing on data more than opinion, being willing to learn everything you can about your product as fast as possible, and above all, experiment as much as you can!  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data Beats Emotions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At BOOM we have a motto: \\\"If you can’t measure it, it doesn’t exist at all\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having opinions is legitimate and they are often useful for analysis. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But with \",\"type\":\"text\"},{\"text\":\"data to back them up\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", opinions become \",\"type\":\"text\"},{\"text\":\"facts\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", which are rarely questioned. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Therefore, we believe that the \",\"type\":\"text\"},{\"text\":\"only element\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" capable of guiding our choices is the \",\"type\":\"text\"},{\"text\":\"data\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that comes from appropriately structured \",\"type\":\"text\"},{\"text\":\"analysis about user needs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", \",\"type\":\"text\"},{\"text\":\"user behaviors,\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and the analysis of other data that will tell us something worth investigating. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how can we understand what is really important for the end-user?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"And above all, how can we release value in the shortest time possible?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"To this end, \",\"type\":\"text\"},{\"text\":\"product discovery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" is what supports us.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Learn Fast.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Once a problem is observed or a need is perceived, there is a hasty tendency to ground a functionality. It doesn't matter if the information is partial or if the problem comes from a single source - what matters is having the backlog full of activities and having the tech team committed to developing them. Do you know what happens to those cases?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The tech team will have worked on features without a concrete goal, but more importantly, the users’ problems won’t be solved, leading them to abandon the product because the outputs would have been favored over outcomes. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The alternative? Once you identify the problem at hand, ask yourself the following two questions: 1) What do we know about this problem 2) what do we not know about it? \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If the elements we don't know are \",\"type\":\"text\"},{\"text\":\"far superior \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"to the ones we \",\"type\":\"text\"},{\"text\":\"do\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\" know, then a \",\"type\":\"text\"},{\"text\":\"discovery phase \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"is in order. In that case, we must keep an \",\"type\":\"text\"},{\"text\":\"experimental mindset\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and ask ourselves: \",\"type\":\"text\"},{\"text\":\"how can I validate the information I already have?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data Insights and Data Collection\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At BOOM’s product department, we have structured a continuous discovery process inspired by the ones experienced PMs like Melissa Perri and Teresa Torres developed.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"First:\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" Let's understand what we know today.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Second: \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"What do we want to know tomorrow?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer lies in establishing a \",\"type\":\"text\"},{\"text\":\"clear, shared and above all measurable goal\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Keep in mind that while an individual user's need is not significant in itself, it becomes noteworthy if other users express the same type of need. A problem cannot be analyzed from a single perspective as it can be the result of a series of interviews, and it is often necessary to \",\"type\":\"text\"},{\"text\":\"diversify the sources\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" in order to \",\"type\":\"text\"},{\"text\":\"collect and organize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" as much information as possible.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When analyzing user behaviors, we look for information on how they \",\"type\":\"text\"},{\"text\":\"use\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and\",\"type\":\"text\"},{\"text\":\" interact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with the product. We try to understand what users really need by \",\"type\":\"text\"},{\"text\":\"collecting data\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and discussing it with the DWH team, who simultaneously conducts other data analyzes, combined with those collected by the Consumer Insight team.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Experiments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"After combining the various \",\"type\":\"text\"},{\"text\":\"quantitative and qualitative analyses\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of every single problem and mapping as clearly as possible, we must \",\"type\":\"text\"},{\"text\":\"define\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"the\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"outcomes we aim to accomplish\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like eagles’ behavior pattern, the best way to go about it is to fly to the peaks of the mountains to find out what’s going on, then descend into the valley to focus better, and only then dive down to the bottom of the valley.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In other words, the goal of these analyzes is not to plan functionalities (outputs) but to \",\"type\":\"text\"},{\"text\":\"plan tactics to quickly learn\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" as much as possible about our users. To this end, we set up a \",\"type\":\"text\"},{\"text\":\"series of small experiments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that can \",\"type\":\"text\"},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" us in our subsequent evaluations - which will make it possible to \",\"type\":\"text\"},{\"text\":\"release many small MVPs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" by validating initial assumptions, collecting other data and improving what has already been created. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Continuous discovery is a daily process that is paired with continuous delivery.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The \",\"type\":\"text\"},{\"text\":\"harmony \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"within a team of engineers is essential to create successful products, which is why our discovery activities are never limited to the product department. Instead, we believe in \",\"type\":\"text\"},{\"text\":\"transparency\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and in the fact that there is not a single person appointed to generate new ideas. Smart people make it \",\"type\":\"text\"},{\"text\":\"easier and more exciting\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" to work on new products.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interested in finding out more? Visit our \",\"type\":\"text\"},{\"text\":\"tech pages!\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"/enterprise\",\"uuid\":\"cc2b8e9f-f6b2-496b-bf28-89a06de4d188\",\"anchor\":null,\"target\":null,\"linktype\":\"story\"}}]}]}]},\"hero_image\":{\"id\":2612372,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/359099ca60/5-key-tips.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":[],\"previewImage\":{\"id\":2612371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/02c34e4c30/5-key-tips.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"created_at\":\"2021-06-17T15:29:01.453Z\",\"published_at\":\"2021-06-23T15:30:58.597Z\",\"id\":56532041,\"uuid\":\"852bd7f6-6e9f-4f8e-894b-4b01757e930e\",\"content\":{\"seo\":{\"_uid\":\"f76520ca-8358-46c2-a5af-906538e26e0c\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"ccde43a6-68aa-4e96-8a0a-8e262f5f3834\",\"title\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"topic\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"author\":\"Stefano Iasi\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Simplifying the production and management of visual content for online companies has never been easier than with the efficiency of a reliable \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"tech partner\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". The perks? A \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"streamlined process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that hides a world of complexity. BOOM offers a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strategic partnership \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"fast production of visual content at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", through one main technology: The \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Visual Production Platform.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOM transforms the way visual content is produced and managed all over the world, providing a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" simplified, frictionless experience \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for users. How is such a goal made possible? \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At the heart of BOOM stands a technological stack that streamlines the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"generation process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of visual content from \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"booking to delivery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", supporting \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"interactions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of multiple actors: 1) our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 2) our\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" photographers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 3) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers of our customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" (they are typically the recipients of the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"visual content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\") and 4) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM operators\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Their interactions are supported and orchestrated by the BOOM Platform, a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"native cloud application that secures and simplifies the user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how exactly does this \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"technology enable us to produce at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"? Here’s how! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content production in one click\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The visual content production journey starts with a customer\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logging\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" into the platform and creating a new order. Actually, the only thing BOOM customers have to do is provide a geographic location where the photoshoot should take place. From that point on, BOOM’s Operators take care of the photoshoot’s\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logistics\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", including the setting of a date, with the support of the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automation support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the visual content is ready, the client is notified and can \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"access the platform to download the material\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" in just a few seconds.  \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Throughout the entire order lifecycle, the final client (in other words, the business owners whose trade is exposed through visuals) receives regular communication, which is a key factor for a positive customer experience, and can choose to be as active as they like, by accessing their details and following the process in their reserved area. In fact, premium customers can customize their communication flow to fit their brand and style, to offer their affiliated businesses a complete tailored experience.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Behind the scenes\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Sounds pretty simple, doesn’t it? Yet this “straightforward” user experience hides a complex behind-the-scenes flow. When a new order is scheduled, the BOOM Platform \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically identifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"notifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" the best photographers for the assignment. Following the photoshoot, the photographer can access the platform and upload the content onto the cloud, which is then automatically transferred to a post-production team, and automatically sent back to the platform for a final review by the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM quality specialists\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". This back-and-forth process with external entities requires a secure \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"API-based integration\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the order is completed, the visual content stays on BOOM’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"storage unit\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" forever, and is made accessible to clients long after they first download their order, so they never have to worry about storing or managing their content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order for this entire process to run smoothly, the platform must be able to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" BOOM’s operators, in case of glitches, rescheduling or reshoot (if the original quality didn’t match BOOM’s standards). The platform allows a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" frictionless communication process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" with photographers and business owners, and provides all the information necessary to successfully complete the photoshoot and the final delivery of content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Built to scale and ever-involving\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The entire system is designed to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"prevent errors\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". For instance, the business owner’s input is \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically validated\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" to confirm the geographic location actually exists, photographers cannot upload more photos than requested or cannot upload corrupted or invalid files. In addition, since we believe in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"continuous improvement\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"data-driven business\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", we collect feedback and specific details on what went wrong, which we then review and use to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"refine\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our process and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"optimize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our system. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order to handle clients requesting large quantities of content orders, BOOM’s Platform includes features that enable the simple management of a massive amount of orders. For instance, it is possible to create and monitor orders in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" - order 500 photoshoots by uploading a CSV file through the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk upload feature.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, our customers can integrate their systems with our stack, by means of our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Open RESTful API\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Through this option, they can book and manage orders from their systems (i.e. their Salesforce) and get notified for each stage of the production lifecycle. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"These flows are used for photo production, but the possibilities of BOOM’s platform are much wider. The entire company is currently focusing on developing it both in terms of new visual content to support but also in terms of \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"new software capabilities\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that can simplify the life of our users by offering them a delightful user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\"},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Get in touch with us to start a new experience in visual content production and management!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"7eca641a-0e8e-4271-a8e7-0d2088eaf706\",\"body\":[{\"_uid\":\"i-9d79ac98-106f-4559-b53e-abe9394ad32a\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/9c235a0ff8/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"a4fdec57-3205-4ec6-975e-026f446f0b07\",\"previewImage\":{\"id\":2479375,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/31ca109b53/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"65a123ee-6e02-463f-a9b0-21c711f04b4b\",\"bc44b448-1222-4d04-8614-6c55c716bbbd\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"the-visual-production-platform-the-tech-behind-the-start-up\",\"full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"sort_by_date\":null,\"position\":80,\"tag_list\":[\"Platform Features\",\"Tech News\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"34b0229f-98f3-4025-b113-0b5ace0ab9ea\",\"first_published_at\":\"2021-06-17T15:31:16.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"translated_slugs\":[{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Lucie Gautheron\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"5-keys-to-create-a-data-driven-customer-centric-mindset\",\"full_slug\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[\"Product Management\",\"Tech Product\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f35ca60e-7dd2-4aad-a10b-12bf7fe4766f\",\"first_published_at\":\"2021-07-23T14:10:03.789Z\",\"release_id\":null,\"lang\":\"default\",\"path\":\"\",\"alternates\":[],\"default_full_slug\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"translated_slugs\":[{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"created_at\":\"2021-06-17T15:29:01.453Z\",\"published_at\":\"2021-06-23T15:30:58.597Z\",\"id\":56532041,\"uuid\":\"852bd7f6-6e9f-4f8e-894b-4b01757e930e\",\"content\":{\"seo\":{\"_uid\":\"f76520ca-8358-46c2-a5af-906538e26e0c\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"ccde43a6-68aa-4e96-8a0a-8e262f5f3834\",\"title\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"topic\":{\"name\":\"Tech Talks\",\"created_at\":\"2021-06-14T12:51:00.144Z\",\"published_at\":\"2021-06-14T13:11:02.322Z\",\"id\":55678622,\"uuid\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"content\":{\"seo\":{\"_uid\":\"ca44d121-d7f9-412f-af60-1f34934d5a46\",\"title\":\"Tech Talks | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"732033d3-5e0e-4ba7-983e-02058020595e\",\"component\":\"topic\"},\"slug\":\"tech-talks\",\"full_slug\":\"resources/topics/tech-talks\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"181160e3-821d-40da-a7fb-a850d43ea099\",\"first_published_at\":\"2021-06-14T12:51:04.620Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/tech-talks\",\"translated_slugs\":[{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Stefano Iasi\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Simplifying the production and management of visual content for online companies has never been easier than with the efficiency of a reliable \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"tech partner\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". The perks? A \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"streamlined process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that hides a world of complexity. BOOM offers a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strategic partnership \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"fast production of visual content at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", through one main technology: The \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Visual Production Platform.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOM transforms the way visual content is produced and managed all over the world, providing a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" simplified, frictionless experience \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for users. How is such a goal made possible? \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At the heart of BOOM stands a technological stack that streamlines the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"generation process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of visual content from \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"booking to delivery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", supporting \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"interactions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of multiple actors: 1) our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 2) our\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" photographers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 3) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers of our customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" (they are typically the recipients of the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"visual content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\") and 4) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM operators\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Their interactions are supported and orchestrated by the BOOM Platform, a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"native cloud application that secures and simplifies the user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how exactly does this \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"technology enable us to produce at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"? Here’s how! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content production in one click\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The visual content production journey starts with a customer\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logging\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" into the platform and creating a new order. Actually, the only thing BOOM customers have to do is provide a geographic location where the photoshoot should take place. From that point on, BOOM’s Operators take care of the photoshoot’s\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logistics\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", including the setting of a date, with the support of the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automation support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the visual content is ready, the client is notified and can \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"access the platform to download the material\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" in just a few seconds.  \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Throughout the entire order lifecycle, the final client (in other words, the business owners whose trade is exposed through visuals) receives regular communication, which is a key factor for a positive customer experience, and can choose to be as active as they like, by accessing their details and following the process in their reserved area. In fact, premium customers can customize their communication flow to fit their brand and style, to offer their affiliated businesses a complete tailored experience.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Behind the scenes\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Sounds pretty simple, doesn’t it? Yet this “straightforward” user experience hides a complex behind-the-scenes flow. When a new order is scheduled, the BOOM Platform \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically identifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"notifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" the best photographers for the assignment. Following the photoshoot, the photographer can access the platform and upload the content onto the cloud, which is then automatically transferred to a post-production team, and automatically sent back to the platform for a final review by the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM quality specialists\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". This back-and-forth process with external entities requires a secure \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"API-based integration\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the order is completed, the visual content stays on BOOM’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"storage unit\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" forever, and is made accessible to clients long after they first download their order, so they never have to worry about storing or managing their content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order for this entire process to run smoothly, the platform must be able to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" BOOM’s operators, in case of glitches, rescheduling or reshoot (if the original quality didn’t match BOOM’s standards). The platform allows a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" frictionless communication process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" with photographers and business owners, and provides all the information necessary to successfully complete the photoshoot and the final delivery of content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Built to scale and ever-involving\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The entire system is designed to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"prevent errors\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". For instance, the business owner’s input is \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically validated\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" to confirm the geographic location actually exists, photographers cannot upload more photos than requested or cannot upload corrupted or invalid files. In addition, since we believe in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"continuous improvement\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"data-driven business\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", we collect feedback and specific details on what went wrong, which we then review and use to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"refine\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our process and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"optimize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our system. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order to handle clients requesting large quantities of content orders, BOOM’s Platform includes features that enable the simple management of a massive amount of orders. For instance, it is possible to create and monitor orders in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" - order 500 photoshoots by uploading a CSV file through the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk upload feature.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, our customers can integrate their systems with our stack, by means of our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Open RESTful API\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Through this option, they can book and manage orders from their systems (i.e. their Salesforce) and get notified for each stage of the production lifecycle. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"These flows are used for photo production, but the possibilities of BOOM’s platform are much wider. The entire company is currently focusing on developing it both in terms of new visual content to support but also in terms of \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"new software capabilities\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that can simplify the life of our users by offering them a delightful user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\"},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Get in touch with us to start a new experience in visual content production and management!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"7eca641a-0e8e-4271-a8e7-0d2088eaf706\",\"body\":[{\"_uid\":\"i-9d79ac98-106f-4559-b53e-abe9394ad32a\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/9c235a0ff8/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Stefano Iasi\",\"created_at\":\"2021-06-19T00:17:56.601Z\",\"published_at\":\"2021-06-19T00:18:00.961Z\",\"id\":56798049,\"uuid\":\"a4fdec57-3205-4ec6-975e-026f446f0b07\",\"content\":{\"_uid\":\"b53efe3f-f65f-4e42-b8af-13221ba86d7a\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Stefano Iasi\",\"component\":\"author\"},\"slug\":\"stefano-iasi\",\"full_slug\":\"fr/authors/stefano-iasi\",\"sort_by_date\":null,\"position\":-80,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"1ab7b6be-6060-4d52-99cf-13ebbb272c5d\",\"first_published_at\":\"2021-06-19T00:18:00.961Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/stefano-iasi\",\"translated_slugs\":[{\"path\":\"authors/stefano-iasi\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/stefano-iasi\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/stefano-iasi\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479375,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/31ca109b53/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"BOOM: How it All Began\",\"created_at\":\"2021-06-17T12:40:25.862Z\",\"published_at\":\"2021-06-23T15:44:13.408Z\",\"id\":56487742,\"uuid\":\"65a123ee-6e02-463f-a9b0-21c711f04b4b\",\"content\":{\"seo\":{\"_uid\":\"0b73fca4-276a-49d6-a08d-f61fcc3ebec9\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"84d0f92b-d43f-472a-967c-87ed9ef1f995\",\"title\":\"BOOM: HOW IT ALL BEGAN\",\"topic\":{\"name\":\"OP-ED\",\"created_at\":\"2021-06-14T12:51:08.879Z\",\"published_at\":\"2021-06-14T13:10:53.003Z\",\"id\":55678623,\"uuid\":\"b46f03c2-7610-41af-acfa-f51c52b4e45b\",\"content\":{\"seo\":{\"_uid\":\"a2ffde03-4ff1-46bd-9579-b0d584fe329b\",\"title\":\"OP-ED | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"fcbcbfd5-7516-461c-a4ff-ab4fcf513e52\",\"component\":\"topic\"},\"slug\":\"op-ed\",\"full_slug\":\"fr/resources/topics/op-ed\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"f615308b-0eda-4c1f-8ed1-b126dcce950b\",\"first_published_at\":\"2021-06-14T12:51:13.775Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/op-ed\",\"translated_slugs\":[{\"path\":\"resources/topics/op-ed\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/op-ed\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/op-ed\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Federico Mattia Dolci\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Since the dawn of time, people have been using images to share ideas and information. From prehistoric cave paintings, artistic contributions of Ancient Greece, to the breakthroughs of the Renaissance or the Modern Age,  visuals have played a significant part in helping us make sense of the world around us. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Images were our first alphabet\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". And today, the importance of visuals moves at a speed never seen before, leading a revolution that profoundly impacts everyone's lifestyles, as well as communication and purchasing habits.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"text\":\"Ever wondered how to change the world through innovation? At the age of 25, we found our calling, and launched BOOM from scratch, against all odds.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We were the odd startuppers: \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"an engineer, an economist and a philosopher\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", who were  still full-time university students at the time. The first photo shoot  was a test for us and our abilities. All we made was  a handful of euros but we didn't care. We shot photos during the day, and we post-produced them at night. We wanted to learn, and every day was the perfect opportunity to improve. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Looking back, I still remember how hard those days were, punctuated by our enthusiasm, our obsessive attention to detail and the pure energy - which is precisely how all incredible journeys should start. When I think back of June 2018, when I had to fly to London at the client’s request . It was my first time there and I went by the name “Augusto”, so that no one would know that Federico, \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"the\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" founder, was also the guy shooting the pictures! Such crazy times! It was like a new beginning. It gave me the strength to try. the courage to set a global dream and the desire to try. Going to London was overcoming my personal limits!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Together we looked where no one else ventured, \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"we looked for \\\"Ithaca\\\"\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", recalling the words of the poet Konstantinos Kavafis, wishing ourselves a long, fruitful journey of adventures and experiences. We too have met our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"cyclops\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and facing them stimulates us to go on, pushes us to question ourselves and improve every day, looking for the most exciting chances.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Soon, a great opportunity led us to a new path, and our company shifted from being a vehicle for products to becoming something bigger - a company able to make a difference in its market segment and beyond. This required many changes. First of all, I went from being “just” a start-up founder to a CEO, with the skills set and responsibilities that come with the title. It was a second calling, a chance to change the status quo for visual content production, leaving the old way for the new, setting the best context possible to dream big together, making BOOM an example of the \\\"new capitalism”. A sacred space to share thoughts, ideas, hopes and curiosities, encouraging original and innovative thinking, always championing a leadership model made of mutual inspiration and transparency, rooted in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"ethics, trust and integrity\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"And do you know what the secret is? The realization that there are no shortcuts, magic potions or workarounds. As always, the real treasure is \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"People\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\".\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Since our foundation, we have thought about our company’s long-term mission to build something that endures. Most companies overestimate what they can do in a year and underestimate what they can do in two or three decades. And the truth is that no matter how much we achieve we never think we've done enough. It doesn't matter what phase your company is in,  we all have to keep our standards high as we grow and stick to our principles because it's what happens in the long term that matters, where the means used to accomplish the ends are as important as those ends! We are not about winning awards or reaching fame, we’re about never giving up on our designs to build something significant, where there was nothing before. And setting entirely new standards \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"takes extraordinary ambition\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and consistent, long-term effort. But we gather strength as we go. That's how we do it. That’s what we’re all about. This is our path, and we have to pursue it with determination and courage. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So by now I’m sure you get it. BOOM is not just a place to work. It is a place where, together, we change the world for the better through innovation. I have learned to remain confident that a small group of thoughtful and committed people can do it. So today's message is clear - \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Always\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Keep Ithaca in front of you!\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"type\":\"hard_break\"}]}]},\"hero_image\":{\"id\":2479417,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/aaecf0f145/boom-how-it-all-began.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Federico Mattia Dolci\",\"created_at\":\"2021-06-19T00:15:11.904Z\",\"published_at\":\"2021-06-19T00:15:18.001Z\",\"id\":56798043,\"uuid\":\"52465d4b-00d3-4724-b0cd-2923321bbcd7\",\"content\":{\"_uid\":\"fef9ebc0-a62e-4fbe-876b-57e8c58d7c4b\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Federico Mattia Dolci\",\"component\":\"author\"},\"slug\":\"federico-mattia-dolci\",\"full_slug\":\"fr/authors/federico-mattia-dolci\",\"sort_by_date\":null,\"position\":-40,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"d526b10a-746e-41b6-a47a-4c1c0827f10b\",\"first_published_at\":\"2021-06-19T00:15:18.001Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/federico-mattia-dolci\",\"translated_slugs\":[{\"path\":\"authors/federico-mattia-dolci\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/federico-mattia-dolci\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/federico-mattia-dolci\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479416,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/32c59ada72/boom-how-it-all-began.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[]},\"slug\":\"boom-how-it-all-began\",\"full_slug\":\"fr/resources/boom-how-it-all-began\",\"sort_by_date\":null,\"position\":120,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"4beeef50-668c-452e-bfae-85479038cd04\",\"first_published_at\":\"2021-06-17T12:45:32.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/boom-how-it-all-began\",\"translated_slugs\":[{\"path\":\"resources/boom-how-it-all-began\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/boom-how-it-all-began\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/boom-how-it-all-began\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Why Brand Consistency Matters\",\"created_at\":\"2021-06-17T14:18:59.682Z\",\"published_at\":\"2021-06-25T09:02:49.209Z\",\"id\":56517102,\"uuid\":\"bc44b448-1222-4d04-8614-6c55c716bbbd\",\"content\":{\"seo\":{\"_uid\":\"de277365-a249-4639-a01f-56c21ead435e\",\"title\":\"Why Brand Consistency Matters?\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"8f39ad4f-263a-4c3a-9da4-7d4c941cf88a\",\"title\":\"Why Brand Consistency Matters\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Nicola Sterchele\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Brand consistency\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" is the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"golden key of online marketing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". It helps find \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"solutions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"to convert more\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and ultimately \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"increase sales\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". According to Lucidpress\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" research\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.lucidpress.com/pages/resources/report/the-impact-of-brand-consistency\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", creating a consistent brand can \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"increase revenue by 33%\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Consistency in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"message, visual identity, and tone of voice\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" accounts for a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strong customer experience\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", and helps understand what they should expect, how to interact with a product, while encouraging them to come back and purchase some more. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"No matter the channel they operate on, brands should aim at providing a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"unified experience\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" in line with their branding elements, including core values, visual elements and messaging. This helps brands create a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strong bond with their audience\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", leading to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"long-term benefits for the company’s success\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But why is it so important? Nowadays, should brands pay more attention to creating excellent products or delivering the best-in-class services that clients need and want to buy? Why should brands invest time and effort in creating \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"“consistent”  customer experiences?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" Here are a few reasons:\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":1},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"First impression counts\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When looking to attract new users,\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" consider the impression they get\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" when they approach a brand website or app for the first time. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"According to research\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.8ways.ch/en/digital-news/visual-design-why-first-impressions-matter\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", it takes only 0.05 seconds for users to get a first impression of a brand website or product, even before navigating or interacting. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Brand marketers or user designers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" should make sure they provide an impactful and consistent experience across all the channels - from social media ads to website presentation or in-app purchases. This means creating a user journey with a unique experience - from colors to visuals and messaging. Imagine a brand that advertises a product as fun and trendy, but the actual user journey is boring and serious! It would lead potential customers to confusion and they might leave without purchasing what they were looking for! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":2},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Consumers trust brands they recognize. \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Many marketers invest time and energy to create a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"solid brand that users will remember\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", but brand recognition is not just about getting your name, claims or colors out there, it’s about \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"creating a set of elements \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"that users can find everywhere, with which they can connect on a personal level. Starbucks is a great example of that: customers can enjoy the exact same experience no matter where they are located - the menu is the same, the waiters make the same spelling mistakes when they write your name on a cup! Apply that rule to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"digital touchpoints\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", customers will be more likely to come back to e-commerce websites where each page includes the same information, with a consistent layout and visual options, making it easy to browse and click on “check out”! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Brand consistency is not just important to help users remember a brand or company, it is also useful to help create what is known as  “\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Aha moments\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.intercom.com/blog/understanding-your-aha-moments-and-putting-them-to-work/\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"bold\"},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"” -\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"feelings of delight\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"that reveal the product’s true value as remembered by the human brain. Research has long shown that purchases are more often driven by \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"emotions than logic\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". In fact, according to H\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"arvard Professor Gerald Zaltman, 95% of purchase decision-making takes place in the subconscious mind, \",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://www.inc.com/logan-chierotti/harvard-professor-says-95-of-purchasing-decisions-are-subconscious.html\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"underline\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"driven by emotions and past positive experiences. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"type\":\"hard_break\"}]},{\"type\":\"ordered_list\",\"attrs\":{\"order\":3},\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visuals enhance brand consistency \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By now, we know that consistency is fundamental to guarantee a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"brand’s success\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", including getting consistent visual content, but it is often challenging, especially for international companies dealing with different corporate branches or different external agencies, each with their own view of what the brand’s look and feel should be like.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOM comes into the game to help companies scale up visual production and keep consistent results everywhere, regardless of location, thanks to the standard guidelines created with the brands and our proprietary \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Visual Production Platform\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"/how-it-works\",\"uuid\":\"eb458f15-aef6-43bd-a41e-8ca67ecc60c0\",\"anchor\":null,\"target\":\"_blank\",\"linktype\":\"story\"}},{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"that standardizes the management and production of visuals. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interested in finding out more about keeping your brand consistent with visuals? Get in touch with us now!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"bfc447df-bbe1-45c5-b3ed-41f0aec7bb68\",\"body\":[{\"_uid\":\"i-214c70b3-39e6-442c-b284-f481eb04ecc2\",\"type\":\"\",\"title\":\"Contact us \",\"button\":{\"id\":\"f8bd4b8b-af10-4fb9-841f-fd30bd2b5aee\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/contact\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479398,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/45dcd5e80a/why-brand-consistency-matters.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Nicola Sterchele\",\"created_at\":\"2021-06-19T00:15:54.595Z\",\"published_at\":\"2021-06-19T00:15:58.612Z\",\"id\":56798044,\"uuid\":\"c14f2126-a68b-4cb0-9f25-edffd83b947a\",\"content\":{\"_uid\":\"ca026e02-3fb5-414f-b3d9-9f1e2691fd14\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Nicola Sterchele\",\"component\":\"author\"},\"slug\":\"nicola-sterchele\",\"full_slug\":\"fr/authors/nicola-sterchele\",\"sort_by_date\":null,\"position\":-50,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"90df2a69-d40e-4e78-9a6e-12544df132e9\",\"first_published_at\":\"2021-06-19T00:15:58.612Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/nicola-sterchele\",\"translated_slugs\":[{\"path\":\"authors/nicola-sterchele\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/nicola-sterchele\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/nicola-sterchele\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479396,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/cf33296eab/why-brand-consistency-matters.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lia Oliveira\",\"created_at\":\"2021-06-19T00:13:06.631Z\",\"published_at\":\"2021-06-19T00:13:53.920Z\",\"id\":56798040,\"uuid\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"content\":{\"_uid\":\"b0a7b63e-c3b5-4fcd-9c48-9b751a2acb05\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"content\":\"\",\"heading\":\"Lia Oliveira\",\"component\":\"author\"},\"slug\":\"lia-oliveira\",\"full_slug\":\"fr/authors/lia-oliveira\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"f64fc6ac-4873-4784-aa9d-7723942597ff\",\"first_published_at\":\"2021-06-19T00:13:14.664Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lia-oliveira\",\"translated_slugs\":[{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Giulia Antonelli\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Giulia Antonelli\",\"created_at\":\"2021-06-19T00:22:16.159Z\",\"published_at\":\"2021-06-19T00:22:19.177Z\",\"id\":56798050,\"uuid\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"content\":{\"_uid\":\"4125aaa9-63a3-4aaf-8047-4f3e70ff6698\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Giulia Antonelli\",\"component\":\"author\"},\"slug\":\"giulia-antonelli\",\"full_slug\":\"fr/authors/giulia-antonelli\",\"sort_by_date\":null,\"position\":-90,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"cda70a70-d94b-449f-a86e-6bcd55248454\",\"first_published_at\":\"2021-06-19T00:22:19.177Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/giulia-antonelli\",\"translated_slugs\":[{\"path\":\"authors/giulia-antonelli\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/giulia-antonelli\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/giulia-antonelli\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lia Oliveira\",\"created_at\":\"2021-06-19T00:13:06.631Z\",\"published_at\":\"2021-06-19T00:13:53.920Z\",\"id\":56798040,\"uuid\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"content\":{\"_uid\":\"b0a7b63e-c3b5-4fcd-9c48-9b751a2acb05\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"content\":\"\",\"heading\":\"Lia Oliveira\",\"component\":\"author\"},\"slug\":\"lia-oliveira\",\"full_slug\":\"fr/authors/lia-oliveira\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"f64fc6ac-4873-4784-aa9d-7723942597ff\",\"first_published_at\":\"2021-06-19T00:13:14.664Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lia-oliveira\",\"translated_slugs\":[{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lia-oliveira\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"Professional Photography For Real Estate: An essential service  \",\"created_at\":\"2021-05-24T12:57:46.811Z\",\"published_at\":\"2021-06-24T15:16:27.822Z\",\"id\":52272395,\"uuid\":\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"content\":{\"seo\":{\"_uid\":\"4a81f52d-6df1-4641-af4f-1bb32eb583df\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"48f4a267-62bf-476f-a891-1eda21fb9910\",\"image\":\"\",\"title\":\"Professional Photography For Real Estate: An Essential Service  \",\"topic\":\"\",\"author\":\"Lia Oliveira\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The year 2020 has been a catalyst for change worldwide. For the real estate market, which had always relied on images to boost their sales,  the challenges that came with the pandemic pushed them to go beyond and almost reinvent themselves, by re-thinking of ways to offer the best online experience to their clients.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content has the potential to help customers shape a deal and imagine specific experiences. In the real estate market, ensuring that clients \\\"get a first-hand feel\\\" for a place is a must!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But how do we create an experience through visual content?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Create a scenario\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A good photo goes beyond photography equipment and editing tools. It also relies on real estate production and mise-en-scène, also known as  \\\"home staging\\\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Prepare the setting, keep every room visually clean (hide wires and unsightly objects such as bins, bags, routers, jackets, bathrobes and controllers). Open curtains, let the natural light in, consider your choice of  bed sheets, fruits and vegetables, plants, books and magazines. These elements help viewers envision life in that space. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Hire a Professional \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Professional photographers have the skills and expertise to shoot pictures that flatter yet accurately depict the properties. When shooting interiors, for example, a professional will know that natural light works best, especially direct sunlight, unless the space includes a particular  light design or needs to communicate a special atmosphere (like in the case of theme hotel rooms - ever heard of haunted house or treehouse themes for example?). A Professional will know how to shoot using the best equipment needed for the properties. For example, the best way to  communicate the actual  dimension of the space is to shoot with special lenses. Wide lenses are usually preferred to show the entire space, while mid-range lenses are used for details and close-ups. With a brief in hands, they’ll have the trained eyes to accurately describe the space through images.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Diversify your Content \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The real estate market can no longer solely rely on getting clients to visit the properties. As such, their offer and business deals depend a lot more on digital content than ever before and so it is no longer enough to include a few pictures on a website. Fortunately, there are other types of content that can complement the website pictures, such as virtual tours or floor plans. While great images can express the cozy, homelike ambiance of a property, a virtual tour and floor plans can give a more accurate description of the space.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Invest in Post-Production\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Light temperature, straightness of lines, cropping - all these elements are essential to guarantee consistency across all visuals, and make it as easy as possible for customers to grasp the information they need through the images on display. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data suggests that a well-conceived visual content can drive revenue and increase conversion rates. Listings with professional high-quality pictures lead to 24% more bookings, and 32% faster sales. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But more than numbers, when we carefully consider the power of content, what we want is for viewers to get an experience as close to the real deal as possible, and get them to think \\\"it's like we´re there\\\". In other words, get content that can virtually transport clients anywhere in the world. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer experiences start with websites and other digital touchpoints. Interested in getting ahead of your competitors and offering the best experience to your future clients? You’ve come to the right place. Contact our experts to get a personalized demo for your business.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c2cc4cd4-c18d-4d9b-b123-995f9b36f253\",\"body\":[{\"_uid\":\"i-c8de079b-d3f6-4350-8156-1b5889e273b8\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2483877,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d65aa979ef/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"fe00ee10-4620-47df-bacc-1352ea02ff61\",\"previewImage\":{\"id\":2483876,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/efae096aac/professional-photography-for-real-estate-an-essential-service.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"ce61460d-c453-477f-af71-77c0a0269905\"]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":{\"name\":\"Business Insights\",\"created_at\":\"2021-06-14T12:50:48.174Z\",\"published_at\":\"2021-06-14T13:11:13.300Z\",\"id\":55678621,\"uuid\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"content\":{\"seo\":{\"_uid\":\"afd5ab8a-da9b-4f1c-a124-85a3f8569a3d\",\"title\":\"Business Insights | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"509ff065-ac52-45ba-b3c3-f5b40382be82\",\"component\":\"topic\"},\"slug\":\"business-insights\",\"full_slug\":\"fr/resources/topics/business-insights\",\"sort_by_date\":null,\"position\":0,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"d87db3d0-9fa0-4ef1-8478-7a543d31e99a\",\"first_published_at\":\"2021-06-14T12:50:50.068Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/business-insights\",\"translated_slugs\":[{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/business-insights\",\"name\":null,\"lang\":\"es\"}]},\"author\":\"Lucie Gautheron\",\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Rapportez un peu de savoir chez vous\"},\"slug\":\"articles\",\"full_slug\":\"fr/resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"/fr/get-started\",\"prep\":true},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":{\"name\":\"Lucie Gautheron\",\"created_at\":\"2021-06-19T00:14:17.534Z\",\"published_at\":\"2021-06-19T00:14:20.470Z\",\"id\":56798041,\"uuid\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"content\":{\"_uid\":\"e1b7cc8b-79a0-4a9c-ac39-9b3bcda5d963\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Lucie Gautheron\",\"component\":\"author\"},\"slug\":\"lucie-gautheron\",\"full_slug\":\"fr/authors/lucie-gautheron\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"ab011cc3-f429-4100-9540-55e30cd29b84\",\"first_published_at\":\"2021-06-19T00:14:20.470Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/lucie-gautheron\",\"translated_slugs\":[{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/lucie-gautheron\",\"name\":null,\"lang\":\"es\"}]},\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"fr/resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"Restaurant Photography: The Recipe for success\",\"created_at\":\"2021-05-24T12:52:12.848Z\",\"published_at\":\"2021-06-24T14:47:47.161Z\",\"id\":52269509,\"uuid\":\"ce61460d-c453-477f-af71-77c0a0269905\",\"content\":{\"seo\":{\"_uid\":\"e613d27d-6695-478d-80ed-feb708a9efac\",\"title\":\"Restaurant Photography: The Recipe for success\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"b7322ec9-74e9-4fd9-af17-6ce9b628902d\",\"body\":\"# \",\"image\":\"//a.storyblok.com/f/111801/723x407/1d67d8d76b/blog-preview-1.jpg\",\"intro\":\"\",\"title\":\"Restaurant Photography: The Recipe for Success\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Giulia Antonelli\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Think about what pushes you to buy something online. What is your decision based on?  Beside your friends’ recommendations and other customers’ reviews, you’ll soon realize that in the end you’re going to \",\"type\":\"text\"},{\"text\":\"buy what you see\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This thinking process also applies to \",\"type\":\"text\"},{\"text\":\"online food ordering\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When making online dining decisions, people will browse through different platforms and websites, look at many different menus, and ultimately go for the most attractive option. And what’s better than a nice photo to make an option attractive?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But today, attracting customers is just one of the many priorities of food delivery companies. Navigating such an increasingly competitive environment implies a number of challenges, which calls for creative solutions to overcome them. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So, what can \",\"type\":\"text\"},{\"text\":\"food delivery companies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" achieve by leveraging the \",\"type\":\"text\"},{\"text\":\"power of photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? Here are three great examples:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD A STRONG BRAND\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having a recognizable brand is key to stand out from the competition. A good brand does not only communicate quality, lifestyle and values, it must be recognizable above all else.  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Studies show that while people only retain about 10% of the information they read, the number goes up to 65% when a picture is included. As such, great, consistent visual content across all channels (apps, websites, or social media) is the best way to create a well-constructed, recognizable brand, which audiences will easily remember.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BUILD CUSTOMERS’ TRUST\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We already mentioned that people’s online purchasing decisions are based on what they see, so imagine their reactions when they end up with a product completely different from what they were promised! \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"By using high-quality photos of the food that will actually be delivered to customers, you’ll be sure to set the right expectations and earn their trust in the process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, say you promote a line of burgers with stock images that look nothing like your offer, the risk of underselling or overselling will become significantly higher, and the customers’ trust will inevitably decrease as rumors will have it that your company does not live up to its promises.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOST RESTAURANTS’ SALES\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Let’s cut to the chase: success is (in part) measured by revenues as well as by numbers of sales transactions. And the impact of great photography becomes self-evident just by  looking at data:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A study by Limetray highlighted an increase of more than 25% in conversion rates when restaurants moved from text-menus to image-based menus.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The famous American company Grubhub has seen a +30% increase in online orders for restaurants that were using photos on their menus. According to another industry giant, Deliveroo, individual menu items with images saw a 6.5% uplift in menu conversion, compared to those without. It’s no wonder that both companies actively encourage their partners to use professional photography!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"----\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Images are incredibly powerful. They trigger our emotions, help us remember, and make communication as immediate as possible. So when hungry customers browse the web for food delivery options, think of how inspired they’ll be by mouth-watering pictures illustrating your offer!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Would you like to stand out in a buffet of different options? Let’s connect! Request a demo with our experts and discover how we supply visual content for other food delivery companies!\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"e1e3e3bc-d4b4-46f4-bf09-93cfcd6c4556\",\"body\":[{\"_uid\":\"i-90d705f0-6fde-4f8e-aba5-13791d371c1f\",\"type\":\"default\",\"title\":\"Book a demo\",\"button\":{\"id\":\"\",\"url\":\"/book-a-demo/\",\"linktype\":\"url\",\"fieldtype\":\"multilink\",\"cached_url\":\"/book-a-demo/\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479477,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/3216a64adb/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"9bd7fdc7-e602-44e5-9a29-ba611d2f76e2\",\"previewImage\":{\"id\":2479475,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/c2bfae05c5/restaurant-photography-the-recipe-for-success.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"53df4dff-8189-4d62-ad27-64ba8c70547a\"]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"professional-photography-for-real-estate-an-essential-service\",\"full_slug\":\"fr/resources/professional-photography-for-real-estate-an-essential-service\",\"sort_by_date\":null,\"position\":170,\"tag_list\":[\"Business insights\",\"Visual content\",\"Short-term\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f0fb4e4d-3b2b-47ab-aec9-b8a3de6d9af9\",\"first_published_at\":\"2021-05-24T12:58:44.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"translated_slugs\":[{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/professional-photography-for-real-estate-an-essential-service\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"restaurant-photography-the-recipe-for-success\",\"full_slug\":\"fr/resources/restaurant-photography-the-recipe-for-success\",\"sort_by_date\":null,\"position\":180,\"tag_list\":[\"Visual content\",\"Business insights\",\"Food\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"19076014-3502-4f68-a3c8-4e30a5822d33\",\"first_published_at\":\"2021-05-24T12:54:48.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/restaurant-photography-the-recipe-for-success\",\"translated_slugs\":[{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/restaurant-photography-the-recipe-for-success\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"why-brand-consistency-matters\",\"full_slug\":\"fr/resources/why-brand-consistency-matters\",\"sort_by_date\":null,\"position\":110,\"tag_list\":[\"Short-term rental\",\"e-commerce\",\"Visual content\",\"Real estate\",\"Food\",\"Business insights\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"973d8b1b-9f49-4a83-b461-5a737b7c8ce0\",\"first_published_at\":\"2021-06-17T14:20:12.000Z\",\"release_id\":null,\"lang\":\"fr\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/why-brand-consistency-matters\",\"translated_slugs\":[{\"path\":\"resources/why-brand-consistency-matters\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/why-brand-consistency-matters\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/why-brand-consistency-matters\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Lucie Gautheron\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"the-visual-production-platform-the-tech-behind-the-start-up\",\"full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"sort_by_date\":null,\"position\":80,\"tag_list\":[\"Platform Features\",\"Tech News\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"34b0229f-98f3-4025-b113-0b5ace0ab9ea\",\"first_published_at\":\"2021-06-17T15:31:16.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"translated_slugs\":[{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-content-can-support-a-tech-product-launch\",\"full_slug\":\"resources/how-content-can-support-a-tech-product-launch\",\"sort_by_date\":null,\"position\":-70,\"tag_list\":[\"Tech Product\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"dcfc81ce-7d26-489c-b3c7-2f727ad93ce6\",\"first_published_at\":\"2021-08-27T09:58:50.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-content-can-support-a-tech-product-launch\",\"translated_slugs\":[{\"path\":\"resources/how-content-can-support-a-tech-product-launch\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-content-can-support-a-tech-product-launch\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-content-can-support-a-tech-product-launch\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"5 Keys to Create a Data-Driven, Customer-Centric Mindset \",\"created_at\":\"2021-07-22T13:19:51.076Z\",\"published_at\":\"2021-09-14T15:40:36.810Z\",\"id\":62053626,\"uuid\":\"d86e4ccf-75b6-4f90-b811-2dd8112c5678\",\"content\":{\"seo\":{\"_uid\":\"a407e7b4-3d8b-4262-878b-b0007267de9b\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"95f7836a-4e38-4d6a-936a-7ab08c6a6d62\",\"title\":\"5 Keys to Create a Data-Driven, Customer-Centric Mindset \",\"topic\":{\"name\":\"Tech Talks\",\"created_at\":\"2021-06-14T12:51:00.144Z\",\"published_at\":\"2021-06-14T13:11:02.322Z\",\"id\":55678622,\"uuid\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"content\":{\"seo\":{\"_uid\":\"ca44d121-d7f9-412f-af60-1f34934d5a46\",\"title\":\"Tech Talks | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"732033d3-5e0e-4ba7-983e-02058020595e\",\"component\":\"topic\"},\"slug\":\"tech-talks\",\"full_slug\":\"resources/topics/tech-talks\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"181160e3-821d-40da-a7fb-a850d43ea099\",\"first_published_at\":\"2021-06-14T12:51:04.620Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/tech-talks\",\"translated_slugs\":[{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"es\"}]},\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Creating products that have value for the user is what matters the most for a \",\"type\":\"text\"},{\"text\":\"Product Manager (PM). \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Understanding why users \",\"type\":\"text\"},{\"text\":\"interact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with the designed product, what problems they encounter most frequently, what their \",\"type\":\"text\"},{\"text\":\"needs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" are, is part of every PM's daily routine.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This is why at BOOM we have built a \",\"type\":\"text\"},{\"text\":\"customer-centric culture\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Here are \",\"type\":\"text\"},{\"text\":\"four main points\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" to take into consideration for a successful product team mindset: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Vanity 1, Usefulness 0.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Very often, the activities prioritized within the backlog are determined by internal mediation between the product team and business stakeholders, with confusing outcomes as the value for the user becomes mixed up with the value suggested by other departments. As a result, you will find yourself administering a list of features rather than a list of needs. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So the question is, what strategies create useful products that satisfy users’ needs?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer lies in focusing on data more than opinion, being willing to learn everything you can about your product as fast as possible, and above all, experiment as much as you can!  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data Beats Emotions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At BOOM we have a motto: \\\"If you can’t measure it, it doesn’t exist at all\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having opinions is legitimate and they are often useful for analysis. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But with \",\"type\":\"text\"},{\"text\":\"data to back them up\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", opinions become \",\"type\":\"text\"},{\"text\":\"facts\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", which are rarely questioned. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Therefore, we believe that the \",\"type\":\"text\"},{\"text\":\"only element\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" capable of guiding our choices is the \",\"type\":\"text\"},{\"text\":\"data\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that comes from appropriately structured \",\"type\":\"text\"},{\"text\":\"analysis about user needs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", \",\"type\":\"text\"},{\"text\":\"user behaviors,\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and the analysis of other data that will tell us something worth investigating. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how can we understand what is really important for the end-user?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"And above all, how can we release value in the shortest time possible?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"To this end, \",\"type\":\"text\"},{\"text\":\"product discovery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" is what supports us.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Learn Fast.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Once a problem is observed or a need is perceived, there is a hasty tendency to ground a functionality. It doesn't matter if the information is partial or if the problem comes from a single source - what matters is having the backlog full of activities and having the tech team committed to developing them. Do you know what happens to those cases?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The tech team will have worked on features without a concrete goal, but more importantly, the users’ problems won’t be solved, leading them to abandon the product because the outputs would have been favored over outcomes. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The alternative? Once you identify the problem at hand, ask yourself the following two questions: 1) What do we know about this problem 2) what do we not know about it? \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If the elements we don't know are \",\"type\":\"text\"},{\"text\":\"far superior \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"to the ones we \",\"type\":\"text\"},{\"text\":\"do\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\" know, then a \",\"type\":\"text\"},{\"text\":\"discovery phase \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"is in order. In that case, we must keep an \",\"type\":\"text\"},{\"text\":\"experimental mindset\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and ask ourselves: \",\"type\":\"text\"},{\"text\":\"how can I validate the information I already have?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data Insights and Data Collection\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At BOOM’s product department, we have structured a continuous discovery process inspired by the ones experienced PMs like Melissa Perri and Teresa Torres developed.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"First:\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" Let's understand what we know today.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Second: \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"What do we want to know tomorrow?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer lies in establishing a \",\"type\":\"text\"},{\"text\":\"clear, shared and above all measurable goal\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Keep in mind that while an individual user's need is not significant in itself, it becomes noteworthy if other users express the same type of need. A problem cannot be analyzed from a single perspective as it can be the result of a series of interviews, and it is often necessary to \",\"type\":\"text\"},{\"text\":\"diversify the sources\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" in order to \",\"type\":\"text\"},{\"text\":\"collect and organize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" as much information as possible.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When analyzing user behaviors, we look for information on how they \",\"type\":\"text\"},{\"text\":\"use\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and\",\"type\":\"text\"},{\"text\":\" interact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with the product. We try to understand what users really need by \",\"type\":\"text\"},{\"text\":\"collecting data\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and discussing it with the DWH team, who simultaneously conducts other data analyzes, combined with those collected by the Consumer Insight team.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Experiments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"After combining the various \",\"type\":\"text\"},{\"text\":\"quantitative and qualitative analyses\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of every single problem and mapping as clearly as possible, we must \",\"type\":\"text\"},{\"text\":\"define\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"the\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"outcomes we aim to accomplish\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like eagles’ behavior pattern, the best way to go about it is to fly to the peaks of the mountains to find out what’s going on, then descend into the valley to focus better, and only then dive down to the bottom of the valley.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In other words, the goal of these analyzes is not to plan functionalities (outputs) but to \",\"type\":\"text\"},{\"text\":\"plan tactics to quickly learn\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" as much as possible about our users. To this end, we set up a \",\"type\":\"text\"},{\"text\":\"series of small experiments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that can \",\"type\":\"text\"},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" us in our subsequent evaluations - which will make it possible to \",\"type\":\"text\"},{\"text\":\"release many small MVPs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" by validating initial assumptions, collecting other data and improving what has already been created. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Continuous discovery is a daily process that is paired with continuous delivery.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The \",\"type\":\"text\"},{\"text\":\"harmony \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"within a team of engineers is essential to create successful products, which is why our discovery activities are never limited to the product department. Instead, we believe in \",\"type\":\"text\"},{\"text\":\"transparency\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and in the fact that there is not a single person appointed to generate new ideas. Smart people make it \",\"type\":\"text\"},{\"text\":\"easier and more exciting\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" to work on new products.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interested in finding out more? Visit our \",\"type\":\"text\"},{\"text\":\"tech pages!\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"/enterprise\",\"uuid\":\"cc2b8e9f-f6b2-496b-bf28-89a06de4d188\",\"anchor\":null,\"target\":null,\"linktype\":\"story\"}}]}]}]},\"hero_image\":{\"id\":2612372,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/359099ca60/5-key-tips.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":[],\"previewImage\":{\"id\":2612371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/02c34e4c30/5-key-tips.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"created_at\":\"2021-06-17T15:29:01.453Z\",\"published_at\":\"2021-06-23T15:30:58.597Z\",\"id\":56532041,\"uuid\":\"852bd7f6-6e9f-4f8e-894b-4b01757e930e\",\"content\":{\"seo\":{\"_uid\":\"f76520ca-8358-46c2-a5af-906538e26e0c\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"ccde43a6-68aa-4e96-8a0a-8e262f5f3834\",\"title\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"topic\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"author\":\"Stefano Iasi\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Simplifying the production and management of visual content for online companies has never been easier than with the efficiency of a reliable \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"tech partner\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". The perks? A \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"streamlined process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that hides a world of complexity. BOOM offers a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strategic partnership \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"fast production of visual content at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", through one main technology: The \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Visual Production Platform.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOM transforms the way visual content is produced and managed all over the world, providing a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" simplified, frictionless experience \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for users. How is such a goal made possible? \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At the heart of BOOM stands a technological stack that streamlines the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"generation process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of visual content from \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"booking to delivery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", supporting \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"interactions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of multiple actors: 1) our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 2) our\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" photographers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 3) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers of our customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" (they are typically the recipients of the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"visual content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\") and 4) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM operators\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Their interactions are supported and orchestrated by the BOOM Platform, a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"native cloud application that secures and simplifies the user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how exactly does this \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"technology enable us to produce at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"? Here’s how! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content production in one click\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The visual content production journey starts with a customer\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logging\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" into the platform and creating a new order. Actually, the only thing BOOM customers have to do is provide a geographic location where the photoshoot should take place. From that point on, BOOM’s Operators take care of the photoshoot’s\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logistics\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", including the setting of a date, with the support of the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automation support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the visual content is ready, the client is notified and can \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"access the platform to download the material\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" in just a few seconds.  \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Throughout the entire order lifecycle, the final client (in other words, the business owners whose trade is exposed through visuals) receives regular communication, which is a key factor for a positive customer experience, and can choose to be as active as they like, by accessing their details and following the process in their reserved area. In fact, premium customers can customize their communication flow to fit their brand and style, to offer their affiliated businesses a complete tailored experience.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Behind the scenes\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Sounds pretty simple, doesn’t it? Yet this “straightforward” user experience hides a complex behind-the-scenes flow. When a new order is scheduled, the BOOM Platform \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically identifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"notifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" the best photographers for the assignment. Following the photoshoot, the photographer can access the platform and upload the content onto the cloud, which is then automatically transferred to a post-production team, and automatically sent back to the platform for a final review by the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM quality specialists\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". This back-and-forth process with external entities requires a secure \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"API-based integration\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the order is completed, the visual content stays on BOOM’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"storage unit\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" forever, and is made accessible to clients long after they first download their order, so they never have to worry about storing or managing their content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order for this entire process to run smoothly, the platform must be able to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" BOOM’s operators, in case of glitches, rescheduling or reshoot (if the original quality didn’t match BOOM’s standards). The platform allows a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" frictionless communication process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" with photographers and business owners, and provides all the information necessary to successfully complete the photoshoot and the final delivery of content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Built to scale and ever-involving\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The entire system is designed to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"prevent errors\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". For instance, the business owner’s input is \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically validated\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" to confirm the geographic location actually exists, photographers cannot upload more photos than requested or cannot upload corrupted or invalid files. In addition, since we believe in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"continuous improvement\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"data-driven business\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", we collect feedback and specific details on what went wrong, which we then review and use to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"refine\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our process and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"optimize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our system. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order to handle clients requesting large quantities of content orders, BOOM’s Platform includes features that enable the simple management of a massive amount of orders. For instance, it is possible to create and monitor orders in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" - order 500 photoshoots by uploading a CSV file through the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk upload feature.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, our customers can integrate their systems with our stack, by means of our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Open RESTful API\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Through this option, they can book and manage orders from their systems (i.e. their Salesforce) and get notified for each stage of the production lifecycle. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"These flows are used for photo production, but the possibilities of BOOM’s platform are much wider. The entire company is currently focusing on developing it both in terms of new visual content to support but also in terms of \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"new software capabilities\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that can simplify the life of our users by offering them a delightful user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\"},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Get in touch with us to start a new experience in visual content production and management!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"7eca641a-0e8e-4271-a8e7-0d2088eaf706\",\"body\":[{\"_uid\":\"i-9d79ac98-106f-4559-b53e-abe9394ad32a\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/9c235a0ff8/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"a4fdec57-3205-4ec6-975e-026f446f0b07\",\"previewImage\":{\"id\":2479375,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/31ca109b53/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"65a123ee-6e02-463f-a9b0-21c711f04b4b\",\"bc44b448-1222-4d04-8614-6c55c716bbbd\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"the-visual-production-platform-the-tech-behind-the-start-up\",\"full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"sort_by_date\":null,\"position\":80,\"tag_list\":[\"Platform Features\",\"Tech News\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"34b0229f-98f3-4025-b113-0b5ace0ab9ea\",\"first_published_at\":\"2021-06-17T15:31:16.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"translated_slugs\":[{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Increase Conversion Rates with Visuals\",\"created_at\":\"2021-05-24T13:12:26.363Z\",\"published_at\":\"2021-06-23T15:48:56.389Z\",\"id\":52272437,\"uuid\":\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\",\"content\":{\"seo\":{\"_uid\":\"f735d112-36ce-4a9f-8a9d-7faa97f640e6\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"d6ffce9e-4c88-4d6e-881d-f7848b8544bb\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"//a.storyblok.com/f/111801/2400x1259/8e8944e43e/articles-hero.jpg\",\"copyright\":null,\"fieldtype\":\"asset\"},\"title\":\"How to Increase Conversion Rates with Visuals\",\"topic\":\"41243e81-e8c8-4d61-8b06-6fa47be06ee3\",\"author\":\"Lucie Gautheron\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As industries turn more and more towards digital solutions able to reach out to broader, international audiences, sales strategies have had to adapt to face fierce competition, with tactics made to attract and convert customers who find themselves lost in an overwhelming sea of propositions. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Of course pricing and positioning remain the leading factors for successful online businesses, but one secret card is growing more and more important to make a difference and \",\"type\":\"text\"},{\"text\":\"increase conversion rates: professional photography\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". From e-commerce to the growing food delivery market or any business supported by a digital touchpoint, there’s a great need to show customers what they are actually purchasing. In fact, the leading food delivery company \",\"type\":\"text\"},{\"text\":\"Deliveroo\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https://foodscene.deliveroo.co.uk/restaurant-profiles/menu-photography-how-does-it-impact-sales.html\",\"uuid\":null,\"anchor\":null,\"target\":\"\",\"linktype\":\"url\"}}]},{\"text\":\" noticed that “individual items with images see a 6.5% uplift in menu conversion, compared to those without.” \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are \",\"type\":\"text\"},{\"text\":\"three reasons\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" why professional photos can contribute majorly to increasing conversion rates: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1.  Building trust & favoring consideration \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"While digital experiences are removing the physical sampling aspect of shopping, the use of photos can \",\"type\":\"text\"},{\"text\":\"transpose visual merchandising onto platforms and websites\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Customers can browse and consider the offer with appealing, descriptive and informative pictures that’ll \",\"type\":\"text\"},{\"text\":\"inspire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" them and help them \",\"type\":\"text\"},{\"text\":\"visualize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" the products that will eventually reach their front door. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When a menu includes specific, appetizing images, when holiday booking platforms feature pictures of their rental offers that allow browsers to travel and fantasize about upcoming destinations, their function is to do much more than just inspire - \",\"type\":\"text\"},{\"text\":\"they enhance the desire\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and therefore \",\"type\":\"text\"},{\"text\":\"bring customers closer to a purchase\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Think about e-commerce websites featuring garment visuals from \",\"type\":\"text\"},{\"text\":\"different perspectives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or car rentals with \",\"type\":\"text\"},{\"text\":\"zoomed-in details\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of the vehicles’ different features. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, \",\"type\":\"text\"},{\"text\":\"visuals build trust\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". When it comes to \",\"type\":\"text\"},{\"text\":\"investing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", customers are more likely to be converted when they can actually see what they are putting in their cart. With informative visuals (including floor plans, 360° views, close-ups), the expectations are set, and visitors are more likely to go from browsers to customers. For example, a short-term rental home described with floor plans can give more detailed information, or ready-to-wear on ghost mannequin can give an accurate fit perspective on a fashion e-commerce, pushing customers to make a decision and press “Check out\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" 2. Faster information, faster acquisition  \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Ever heard that a picture is worth a thousand words? Well, actually… they are worth \",\"type\":\"text\"},{\"text\":\"60,000 words\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". According to \",\"type\":\"text\"},{\"text\":\"research conducted by 3M\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://web.archive.org/web/20001102203936/http%3A//3m.com/meetingnetwork/files/meetingguide_pres.pdf\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":\"url\"}}]},{\"text\":\" a \",\"type\":\"text\"},{\"text\":\"human brain processes images 60,000 times faster than a written text\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In fact, research shows that three days after acquiring information, people remember 10% of what they read, 20% of what they hear, and 65% of what they see. In other words, listing the benefits of a product/service will never be as powerful as flashing eye-catching images, which will significantly reduce the time to process information. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Upselling, Or Succumbing to the “Buffet Effect”\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like wheeling a dessert cart after a restaurant meal, or grabbing additional items at a checkout counter, combining visuals on a food delivery platform or e-commerce website can inspire customers to purchase more than they had initially intended. To incite a sales increase, cross-selling and up-selling have better chances when digital platforms offer strategic photos that not only feature individual items but combos as well. When combos are clicked together and presented in the menu, there are chances that people order the entire combo rather than just a single dish. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Have we got your attention now? Let’s connect! Request a demo and discover more visual options that will directly contribute to increasing your conversion rates.\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"092c21f8-2b42-4c6a-8480-59ab8619cb14\",\"body\":[{\"_uid\":\"i-decae9af-8493-4c1a-a673-69ce60139543\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479446,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/f3073eaeb7/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"f30a7ed7-aec4-452c-8b49-ee5e07bd3f3a\",\"previewImage\":{\"id\":2479443,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/65c188d580/how-to-increase-conversion-rates-with-visuals.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"53df4dff-8189-4d62-ad27-64ba8c70547a\",\"ce61460d-c453-477f-af71-77c0a0269905\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"how-to-increase-conversion-rates-with-visuals\",\"full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"sort_by_date\":null,\"position\":160,\"tag_list\":[\"Food\",\"Business insights\",\"Visual content\",\"Real estate\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"89528ee9-e4fc-478b-8fb3-2a0ea1f30d77\",\"first_published_at\":\"2021-05-24T13:16:41.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"translated_slugs\":[{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-increase-conversion-rates-with-visuals\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"5-keys-to-create-a-data-driven-customer-centric-mindset\",\"full_slug\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[\"Product Management\",\"Tech Product\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f35ca60e-7dd2-4aad-a10b-12bf7fe4766f\",\"first_published_at\":\"2021-07-23T14:10:03.789Z\",\"release_id\":null,\"lang\":\"default\",\"path\":\"\",\"alternates\":[],\"default_full_slug\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"translated_slugs\":[{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"How to Boost Efficient Designer-Developer Collaborations in Tech Companies \",\"created_at\":\"2021-09-14T15:17:06.756Z\",\"published_at\":\"2021-09-29T13:50:19.851Z\",\"id\":71413731,\"uuid\":\"97e27848-de2d-4798-b4dc-cd2ad028bd11\",\"content\":{\"seo\":{\"_uid\":\"6ba1c200-e1b8-48e8-87be-4a005bb412a3\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"405cf027-c157-428a-b876-0b965b115c74\",\"title\":\"How to Boost Efficient Designer-Developer Collaborations in Tech Companies \",\"topic\":{\"name\":\"Tech Talks\",\"created_at\":\"2021-06-14T12:51:00.144Z\",\"published_at\":\"2021-06-14T13:11:02.322Z\",\"id\":55678622,\"uuid\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"content\":{\"seo\":{\"_uid\":\"ca44d121-d7f9-412f-af60-1f34934d5a46\",\"title\":\"Tech Talks | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"732033d3-5e0e-4ba7-983e-02058020595e\",\"component\":\"topic\"},\"slug\":\"tech-talks\",\"full_slug\":\"resources/topics/tech-talks\",\"sort_by_date\":null,\"position\":-10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":55677846,\"meta_data\":null,\"group_id\":\"181160e3-821d-40da-a7fb-a850d43ea099\",\"first_published_at\":\"2021-06-14T12:51:04.620Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/topics/tech-talks\",\"translated_slugs\":[{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/topics/tech-talks\",\"name\":null,\"lang\":\"es\"}]},\"category\":{\"name\":\"Articles\",\"created_at\":\"2021-05-21T12:36:59.456Z\",\"published_at\":\"2021-06-22T16:34:23.529Z\",\"id\":51818895,\"uuid\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"content\":{\"seo\":{\"_uid\":\"2095e1f8-104d-42e8-81cb-bd2f12e5fda2\",\"title\":\"Articles | Boom\",\"plugin\":\"meta-fields\",\"description\":\"\"},\"_uid\":\"f4c94285-ad6a-4760-9a4b-ae02ff749519\",\"component\":\"Category\",\"footerCTAHeading\":\"Take a little knowledge home with you\"},\"slug\":\"articles\",\"full_slug\":\"resources/articles\",\"sort_by_date\":null,\"position\":10,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"486cfc24-2967-4bc0-a433-af0a696e13bb\",\"first_published_at\":\"2021-05-21T12:37:07.247Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/articles\",\"translated_slugs\":[{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/articles\",\"name\":null,\"lang\":\"es\"}]},\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Are you sick of hearing the same old story about the eternal fight between \",\"type\":\"text\"},{\"text\":\"designers and developers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"? So are we! You know that classic scenario...When UX designers ask for a unicorn but developers discourage that request because the deadline is too tight, and finally the team ends up making a donkey with a blue tail and everybody is happy...\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Here are a few tips to boost collaboration between the two, brought to you by a team of UX/UI designer and Front End developer working together in one of the coolest tech startups in Italy, who learned that combining strengths and skills is the key to creating a meaningful tech product. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But first of all, why is the designer and developer relationship so important? Quite simply, the pair acts as the engine in charge of product development and evolution, especially in fast-growing tech start-ups. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Every day, the team needs to forecast problems that may arise along the path, strive to find the right compromise between value for the customer, speed, and quality. Simultaneously, we have to understand each other even though we sometimes speak different languages. We must exchange knowledge to better cope with problems and find effective solutions. Not easy, right?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Waste and reworks are our enemies and we must try to avoid them as much as possible, including unwanted functionality, interface visual inconsistency, poor user experience, broken flows, loading problems, service malfunctioning, bugs, etc.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Reworks cause inaccuracies and slow down the workflows because we have to focus on fixing errors that could have been avoided by forecasting the problems. What causes these reworks? Well, oftentimes, they are\",\"type\":\"text\"},{\"text\":\" linked to a lack of internal communication and often poor collaboration efficiency among team members.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Sometimes it can be difficult to create a relationship of mutual trust, especially in working environments that encourage competition rather than collaboration (fortunately, this is not our case!). A good working environment is a ground on which efficient collaboration can take place and grow healthily.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"To improve communication and make the dev/designer’s collaboration and life as easy as possible, here are 3 activities we carry out on a regular basis: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1. Conduct Product Discovery Meetings\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"On a weekly basis, we participate in meetings known as  \\\"product discovery\\\". Those meetings are fundamental to ensure the successful development and implementation of our product. Within the product discovery meeting, we exchange knowledge about particular functionalities that have been prototyped by the product team. It is our moment to share all types of feedback in a \",\"type\":\"text\"},{\"text\":\"totally transparent and fearless way\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\": doubts, implementation difficulties, worries about how a feature will evolve... Most of the time we need to deepen the research and come back with a new proposal to share with the rest of the team. Those meetings are a safe, non-judgmental place where enthusiasm prevails, as well as a positive energy  that enhances the bond between the developer and designer teams.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"2. Find a compromise\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"For all you perfectionists out there - do not be afraid of the word \\\"compromise\\\"! We are not talking about sacrificing the quality of our work but meeting each other halfway by finding the right balance to release a minimum set of \",\"type\":\"text\"},{\"text\":\"measurable, valuable\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" features in a short time, for the good of the final result.  After all, would you build a very complicated scientific instrument at a very high cost without making sure it could really serve the users? We wouldn’t!\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This is what we mean by  \\\"compromise\\\" - we build products for our users, and sprint after sprint, we refine and improve them, taking user behaviors into consideration with every step. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When we talk about “measuring”, we mean listening to the final user. This iterative and \\\"step by step\\\" approach brings advantages both in terms of design and development. For example, we get to know the products we are building inside and out, and we can therefore manage our code better if we need to. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"3. Experiment daily\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"We don’t just communicate in our weekly scheduled meetings but on a daily basis. Developers and designers, as well as the whole engineering team and the product team, should always be aligned on ongoing developments. The daily stand-ups help us keep track of the daily workflow, but we always find extra time to keep in touch and exchange ideas - which are always welcome! - and go over smaller details and how we can do better. We share a\",\"type\":\"text\"},{\"text\":\" storybook\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http://storybook.js.org/\",\"uuid\":null,\"anchor\":null,\"target\":null,\"linktype\":null}},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", a tool that allows us to build UI components in a totally isolated environment, write documentation and test them interactively, which is used by the designer to test components and give continuous feedback to frontend developers.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So to cut a long story short, efficient collaboration is fundamental to ensure a smooth workflow and the best results possible. Collaboration is essential, and it’s never too late to start working on it! Creating an environment built on mutual trust and communication will not only benefit the company but will help you work better and smarter!\",\"type\":\"text\"},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interested in finding out more about our department?\",\"type\":\"text\"}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"c78fadb3-42ad-40f1-a388-a2d31f78faa0\",\"body\":[{\"_uid\":\"i-99279f4b-5dde-4914-8165-b0f447bf6e47\",\"type\":\"default\",\"title\":\"Visit our Tech Pages\",\"button\":{\"id\":\"cc2b8e9f-f6b2-496b-bf28-89a06de4d188\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"enterprise\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2873794,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/1b61736fd5/designer-_-developer.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":[{\"name\":\"Luis Gibertoni & Stefano Armenes\",\"created_at\":\"2021-09-29T13:49:02.538Z\",\"published_at\":\"2021-09-29T13:49:13.994Z\",\"id\":74391926,\"uuid\":\"e9e240e8-48f9-4d3e-bfec-9cb0759cb085\",\"content\":{\"_uid\":\"c37e9dcf-51ac-4df6-b5e4-f78f6cba38b5\",\"image\":{\"id\":null,\"alt\":null,\"name\":\"\",\"focus\":null,\"title\":null,\"filename\":\"\",\"copyright\":null,\"fieldtype\":\"asset\"},\"heading\":\"Luisa Gibertoni & Stefano Armenes\",\"component\":\"author\"},\"slug\":\"luis-gibertoni-stefano-armenes\",\"full_slug\":\"authors/luis-gibertoni-stefano-armenes\",\"sort_by_date\":null,\"position\":-200,\"tag_list\":[],\"is_startpage\":false,\"parent_id\":56798012,\"meta_data\":null,\"group_id\":\"c89a93c0-4de3-4925-9527-4a53c30c5b2b\",\"first_published_at\":\"2021-09-29T13:49:13.994Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"authors/luis-gibertoni-stefano-armenes\",\"translated_slugs\":[{\"path\":\"authors/luis-gibertoni-stefano-armenes\",\"name\":null,\"lang\":\"it\"},{\"path\":\"authors/luis-gibertoni-stefano-armenes\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"authors/luis-gibertoni-stefano-armenes\",\"name\":null,\"lang\":\"es\"}]}],\"previewImage\":{\"id\":2873792,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/0e5cf1985d/designer-_-developer.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[{\"name\":\"How content can support a tech product launch\",\"created_at\":\"2021-08-27T09:56:32.491Z\",\"published_at\":\"2021-09-03T14:01:32.187Z\",\"id\":68484423,\"uuid\":\"6bd33d6e-b1d5-4dd0-ba59-00b8daee7702\",\"content\":{\"seo\":{\"_uid\":\"37d81ec9-25e8-4716-8766-c506f9d9e145\",\"title\":\"How content can support a tech product launch\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"1ad8f7f4-e545-4b49-8d92-79981b9a8575\",\"title\":\"How content can support a tech product launch\",\"topic\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Tech product launches are not easy. No matter how much a team plans upfront, launches will always involve changes in directions and new areas of opportunity to explore.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A strong product launch strategy has to be built on \",\"type\":\"text\"},{\"text\":\"education\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". In addition to placing a new offering on the market, the brand needs to act as a guide.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Audiences might feel lost or unsure of how to get started with your new product.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"That’s where \",\"type\":\"text\"},{\"text\":\"content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" comes into play. Through newsletters, blog articles, customer stories, infographics, guides, demos, and other assets, content can help position a company and help foster a better, more thorough \",\"type\":\"text\"},{\"text\":\"customer conversation\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Here are a few \",\"type\":\"text\"},{\"text\":\"steps \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"with\",\"type\":\"text\"},{\"text\":\" initiatives\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that can support a product marketing strategy and help make a product launch successful:\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Step 1: Customer development\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"A strong product launch cannot be built without full customer knowledge. The more you know them, the easier it is to build a product that addresses their pain points. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"To get that knowledge, it isn’t necessary to interview hundreds of people to conduct market research. Reaching out to 15-20 customers could give you the information you need to build a product marketing plan for the \",\"type\":\"text\"},{\"text\":\"launch of a new product\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Step 2: Identify Points of Friction\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"When customers drop from your conversion funnel (mostly after the launching of a new Product), it usually means that there are different problems in understanding the flows and processes. For example, the product messaging \",\"type\":\"text\"},{\"text\":\"lacks clarity\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", or the process is \",\"type\":\"text\"},{\"text\":\"confusing\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". But \",\"type\":\"text\"},{\"text\":\"content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" can help overcome those challenges.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When product communication is misleading or not clear enough, review your messaging. If processes are confusing, create content such as guides, demos, or even better, an onboarding process.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hard_break\"},{\"text\":\"By understanding the points of friction in your sales process, you can create and develop the right \",\"type\":\"text\"},{\"text\":\"collateral\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". If audiences are skeptical about the ROI of your product, sharing customer stories will enlighten them. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"In other words, creating content will put you in control.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Step 3: Identify the Growth Levers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Go to your sales team and find out how potential customers are \",\"type\":\"text\"},{\"text\":\"learning\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" about your company. Then talk to the support team to learn how customers are \",\"type\":\"text\"},{\"text\":\"engaging\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with product information.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Thanks to content, you can \",\"type\":\"text\"},{\"text\":\"significantly improve\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" these relationships and communication points. These communication touchpoints can add value to your product by creating the right informative content customized for every stage of the funnel.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Step 4: Learn and adapt\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Once you cover Steps 1 & 2 you’ll be able to reassess your content marketing assumptions, uncover new areas of focus, and identify areas where messaging could be a lot stronger.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Almost every company experiences a \",\"type\":\"text\"},{\"text\":\"learning curve\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" when \",\"type\":\"text\"},{\"text\":\"launching a new\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"product\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", which is immensely helpful. Learning is the best way to feel challenged to create the best product, messaging, positioning, and content assets possible.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Start by examining the areas of strength, before addressing the rest. As you continue to \",\"type\":\"text\"},{\"text\":\"develop\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" your strategy and \",\"type\":\"text\"},{\"text\":\"learn\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", you will also spot new areas of opportunity for your content and messaging.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"Start small, learn as much as you can, and grow.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Content to support your product communication\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Content puts you in control and is crucial communication support. The top three content types to support your \",\"type\":\"text\"},{\"text\":\"product communication tactics\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" include:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"1. Customer success stories\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Customers are now research-driven and keen to find solutions that perfectly fit their needs. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"That’s where customer success stories come into play. They’re educational assets that show how similar customers have gained \",\"type\":\"text\"},{\"text\":\"value\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"from your\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"product\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", and how your solution helped them achieve their goals.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Strong stories should have the following qualities:\",\"type\":\"text\"}]},{\"type\":\"bullet_list\",\"content\":[{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"They are narrative-driven and do not have a sales pitch frame.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"They are customer-centric and focus on your customers’ pain points rather than your product.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]},{\"type\":\"list_item\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"They incorporate customers’ ROI and key performance metrics.\",\"type\":\"text\"},{\"type\":\"hard_break\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Customer stories’ assets can be used for a variety of channels, from website resources and marketing campaigns to direct customer communications.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"2. Internal Newsletters\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Internal newsletters can share the learnings of the marketing, sales, and customer-facing teams and \",\"type\":\"text\"},{\"text\":\"communicate information\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" about new initiatives, releases and launches.\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Building customer conversation is key, but internal cross-team communication is important as well. Your teams need to push in the \",\"type\":\"text\"},{\"text\":\"same direction\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and be excited about initiatives, such as new product launches. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Product launches should be clearly communicated to every company department, including product development and positioning. Moreover, internal communication is important to manage expectations and update the teams with the latest knowledge.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"3. Onboarding Materials\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"type\":\"hard_break\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Communicating a new product can be tricky, especially if it includes a new complex process or flow. It is therefore important to help customers\",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"text\":\"learn and understand\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" your product and keep them engaged. \",\"type\":\"text\"},{\"type\":\"hard_break\"},{\"type\":\"hard_break\"},{\"text\":\"Provide guidance, and make the \",\"type\":\"text\"},{\"text\":\"onboarding process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" easy, with the support of \",\"type\":\"text\"},{\"text\":\"assets\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" specifically designed for the sales team, account management and customer support teams.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"A well-managed product communication strategy is essential to help customers learn about your product, \",\"type\":\"text\"},{\"text\":\"understand its value and engage with it\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]}]},\"hero_image\":{\"id\":2806974,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/d24825f442/how-content-can-help.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"45bb221c-9dad-4171-aa98-3477e58540fd\",\"previewImage\":{\"id\":2806973,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/613fe9e554/how-content-can-help.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"56722479-d1e6-4013-bae2-a5ea14d60645\",\"d86e4ccf-75b6-4f90-b811-2dd8112c5678\",\"852bd7f6-6e9f-4f8e-894b-4b01757e930e\"]},\"slug\":\"how-content-can-support-a-tech-product-launch\",\"full_slug\":\"resources/how-content-can-support-a-tech-product-launch\",\"sort_by_date\":null,\"position\":-70,\"tag_list\":[\"Tech Product\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"dcfc81ce-7d26-489c-b3c7-2f727ad93ce6\",\"first_published_at\":\"2021-08-27T09:58:50.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-content-can-support-a-tech-product-launch\",\"translated_slugs\":[{\"path\":\"resources/how-content-can-support-a-tech-product-launch\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-content-can-support-a-tech-product-launch\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-content-can-support-a-tech-product-launch\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"5 Keys to Create a Data-Driven, Customer-Centric Mindset \",\"created_at\":\"2021-07-22T13:19:51.076Z\",\"published_at\":\"2021-09-14T15:40:36.810Z\",\"id\":62053626,\"uuid\":\"d86e4ccf-75b6-4f90-b811-2dd8112c5678\",\"content\":{\"seo\":{\"_uid\":\"a407e7b4-3d8b-4262-878b-b0007267de9b\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"95f7836a-4e38-4d6a-936a-7ab08c6a6d62\",\"title\":\"5 Keys to Create a Data-Driven, Customer-Centric Mindset \",\"topic\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Creating products that have value for the user is what matters the most for a \",\"type\":\"text\"},{\"text\":\"Product Manager (PM). \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"Understanding why users \",\"type\":\"text\"},{\"text\":\"interact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with the designed product, what problems they encounter most frequently, what their \",\"type\":\"text\"},{\"text\":\"needs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" are, is part of every PM's daily routine.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This is why at BOOM we have built a \",\"type\":\"text\"},{\"text\":\"customer-centric culture\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". Here are \",\"type\":\"text\"},{\"text\":\"four main points\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" to take into consideration for a successful product team mindset: \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Vanity 1, Usefulness 0.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Very often, the activities prioritized within the backlog are determined by internal mediation between the product team and business stakeholders, with confusing outcomes as the value for the user becomes mixed up with the value suggested by other departments. As a result, you will find yourself administering a list of features rather than a list of needs. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So the question is, what strategies create useful products that satisfy users’ needs?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer lies in focusing on data more than opinion, being willing to learn everything you can about your product as fast as possible, and above all, experiment as much as you can!  \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data Beats Emotions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At BOOM we have a motto: \\\"If you can’t measure it, it doesn’t exist at all\\\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Having opinions is legitimate and they are often useful for analysis. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"But with \",\"type\":\"text\"},{\"text\":\"data to back them up\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", opinions become \",\"type\":\"text\"},{\"text\":\"facts\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", which are rarely questioned. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Therefore, we believe that the \",\"type\":\"text\"},{\"text\":\"only element\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" capable of guiding our choices is the \",\"type\":\"text\"},{\"text\":\"data\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that comes from appropriately structured \",\"type\":\"text\"},{\"text\":\"analysis about user needs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\", \",\"type\":\"text\"},{\"text\":\"user behaviors,\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and the analysis of other data that will tell us something worth investigating. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how can we understand what is really important for the end-user?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"And above all, how can we release value in the shortest time possible?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"To this end, \",\"type\":\"text\"},{\"text\":\"product discovery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" is what supports us.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Learn Fast.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Once a problem is observed or a need is perceived, there is a hasty tendency to ground a functionality. It doesn't matter if the information is partial or if the problem comes from a single source - what matters is having the backlog full of activities and having the tech team committed to developing them. Do you know what happens to those cases?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The tech team will have worked on features without a concrete goal, but more importantly, the users’ problems won’t be solved, leading them to abandon the product because the outputs would have been favored over outcomes. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The alternative? Once you identify the problem at hand, ask yourself the following two questions: 1) What do we know about this problem 2) what do we not know about it? \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If the elements we don't know are \",\"type\":\"text\"},{\"text\":\"far superior \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"to the ones we \",\"type\":\"text\"},{\"text\":\"do\",\"type\":\"text\",\"marks\":[{\"type\":\"italic\"}]},{\"text\":\" know, then a \",\"type\":\"text\"},{\"text\":\"discovery phase \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"is in order. In that case, we must keep an \",\"type\":\"text\"},{\"text\":\"experimental mindset\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and ask ourselves: \",\"type\":\"text\"},{\"text\":\"how can I validate the information I already have?\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Data Insights and Data Collection\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At BOOM’s product department, we have structured a continuous discovery process inspired by the ones experienced PMs like Melissa Perri and Teresa Torres developed.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"First:\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" Let's understand what we know today.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Second: \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"What do we want to know tomorrow?\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The answer lies in establishing a \",\"type\":\"text\"},{\"text\":\"clear, shared and above all measurable goal\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\".\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Keep in mind that while an individual user's need is not significant in itself, it becomes noteworthy if other users express the same type of need. A problem cannot be analyzed from a single perspective as it can be the result of a series of interviews, and it is often necessary to \",\"type\":\"text\"},{\"text\":\"diversify the sources\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" in order to \",\"type\":\"text\"},{\"text\":\"collect and organize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" as much information as possible.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When analyzing user behaviors, we look for information on how they \",\"type\":\"text\"},{\"text\":\"use\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and\",\"type\":\"text\"},{\"text\":\" interact\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" with the product. We try to understand what users really need by \",\"type\":\"text\"},{\"text\":\"collecting data\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and discussing it with the DWH team, who simultaneously conducts other data analyzes, combined with those collected by the Consumer Insight team.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Experiments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"After combining the various \",\"type\":\"text\"},{\"text\":\"quantitative and qualitative analyses\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" of every single problem and mapping as clearly as possible, we must \",\"type\":\"text\"},{\"text\":\"define\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"the\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" \",\"type\":\"text\"},{\"text\":\"outcomes we aim to accomplish\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\". \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Just like eagles’ behavior pattern, the best way to go about it is to fly to the peaks of the mountains to find out what’s going on, then descend into the valley to focus better, and only then dive down to the bottom of the valley.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In other words, the goal of these analyzes is not to plan functionalities (outputs) but to \",\"type\":\"text\"},{\"text\":\"plan tactics to quickly learn\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" as much as possible about our users. To this end, we set up a \",\"type\":\"text\"},{\"text\":\"series of small experiments\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" that can \",\"type\":\"text\"},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" us in our subsequent evaluations - which will make it possible to \",\"type\":\"text\"},{\"text\":\"release many small MVPs\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" by validating initial assumptions, collecting other data and improving what has already been created. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Continuous discovery is a daily process that is paired with continuous delivery.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The \",\"type\":\"text\"},{\"text\":\"harmony \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\"within a team of engineers is essential to create successful products, which is why our discovery activities are never limited to the product department. Instead, we believe in \",\"type\":\"text\"},{\"text\":\"transparency\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" and in the fact that there is not a single person appointed to generate new ideas. Smart people make it \",\"type\":\"text\"},{\"text\":\"easier and more exciting\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"}]},{\"text\":\" to work on new products.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interested in finding out more? Visit our \",\"type\":\"text\"},{\"text\":\"tech pages!\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"/enterprise\",\"uuid\":\"cc2b8e9f-f6b2-496b-bf28-89a06de4d188\",\"anchor\":null,\"target\":null,\"linktype\":\"story\"}}]}]}]},\"hero_image\":{\"id\":2612372,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/359099ca60/5-key-tips.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":[\"1de04bd9-fdf9-4e12-af19-9638068ce206\"],\"previewImage\":{\"id\":2612371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/02c34e4c30/5-key-tips.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"852bd7f6-6e9f-4f8e-894b-4b01757e930e\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"5-keys-to-create-a-data-driven-customer-centric-mindset\",\"full_slug\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"sort_by_date\":null,\"position\":-20,\"tag_list\":[\"Product Management\",\"Tech Product\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"f35ca60e-7dd2-4aad-a10b-12bf7fe4766f\",\"first_published_at\":\"2021-07-23T14:10:03.789Z\",\"release_id\":null,\"lang\":\"default\",\"path\":\"\",\"alternates\":[],\"default_full_slug\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"translated_slugs\":[{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/5-keys-to-create-a-data-driven-customer-centric-mindset\",\"name\":null,\"lang\":\"es\"}]},{\"name\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"created_at\":\"2021-06-17T15:29:01.453Z\",\"published_at\":\"2021-06-23T15:30:58.597Z\",\"id\":56532041,\"uuid\":\"852bd7f6-6e9f-4f8e-894b-4b01757e930e\",\"content\":{\"seo\":{\"_uid\":\"f76520ca-8358-46c2-a5af-906538e26e0c\",\"title\":\"\",\"plugin\":\"seo_metatags\",\"og_image\":\"\",\"og_title\":\"\",\"description\":\"\",\"twitter_image\":\"\",\"twitter_title\":\"\",\"og_description\":\"\",\"twitter_description\":\"\"},\"_uid\":\"ccde43a6-68aa-4e96-8a0a-8e262f5f3834\",\"title\":\"The Visual Production Platform: The Tech Behind the Start-up\",\"topic\":\"043f9415-ea58-486f-80ba-ce09f73c05c7\",\"author\":\"Stefano Iasi\",\"category\":\"87b25a2b-e9e2-4521-9d6d-2ecf333ccf35\",\"component\":\"Post\",\"long_text\":{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Simplifying the production and management of visual content for online companies has never been easier than with the efficiency of a reliable \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"tech partner\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". The perks? A \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"streamlined process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that hides a world of complexity. BOOM offers a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"strategic partnership \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"fast production of visual content at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", through one main technology: The \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Visual Production Platform.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"BOOM transforms the way visual content is produced and managed all over the world, providing a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" simplified, frictionless experience \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"for users. How is such a goal made possible? \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"At the heart of BOOM stands a technological stack that streamlines the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"generation process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of visual content from \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"booking to delivery\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", supporting \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"interactions\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" of multiple actors: 1) our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 2) our\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" photographers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" 3) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"customers of our customers\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" (they are typically the recipients of the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"visual content\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\") and 4) the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM operators\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Their interactions are supported and orchestrated by the BOOM Platform, a \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"native cloud application that secures and simplifies the user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"So how exactly does this \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"technology enable us to produce at scale\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"? Here’s how! \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Visual content production in one click\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The visual content production journey starts with a customer\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logging\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" into the platform and creating a new order. Actually, the only thing BOOM customers have to do is provide a geographic location where the photoshoot should take place. From that point on, BOOM’s Operators take care of the photoshoot’s\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" logistics\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", including the setting of a date, with the support of the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automation support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the visual content is ready, the client is notified and can \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"access the platform to download the material\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" in just a few seconds.  \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Throughout the entire order lifecycle, the final client (in other words, the business owners whose trade is exposed through visuals) receives regular communication, which is a key factor for a positive customer experience, and can choose to be as active as they like, by accessing their details and following the process in their reserved area. In fact, premium customers can customize their communication flow to fit their brand and style, to offer their affiliated businesses a complete tailored experience.\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Behind the scenes\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Sounds pretty simple, doesn’t it? Yet this “straightforward” user experience hides a complex behind-the-scenes flow. When a new order is scheduled, the BOOM Platform \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically identifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"notifies\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" the best photographers for the assignment. Following the photoshoot, the photographer can access the platform and upload the content onto the cloud, which is then automatically transferred to a post-production team, and automatically sent back to the platform for a final review by the \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"BOOM quality specialists\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". This back-and-forth process with external entities requires a secure \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"API-based integration\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Once the order is completed, the visual content stays on BOOM’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"storage unit\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" forever, and is made accessible to clients long after they first download their order, so they never have to worry about storing or managing their content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order for this entire process to run smoothly, the platform must be able to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"support\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" BOOM’s operators, in case of glitches, rescheduling or reshoot (if the original quality didn’t match BOOM’s standards). The platform allows a\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" frictionless communication process\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" with photographers and business owners, and provides all the information necessary to successfully complete the photoshoot and the final delivery of content. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Built to scale and ever-involving\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The entire system is designed to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"prevent errors\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". For instance, the business owner’s input is \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"automatically validated\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" to confirm the geographic location actually exists, photographers cannot upload more photos than requested or cannot upload corrupted or invalid files. In addition, since we believe in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"continuous improvement\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"data-driven business\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\", we collect feedback and specific details on what went wrong, which we then review and use to \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"refine\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our process and \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"optimize\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" our system. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order to handle clients requesting large quantities of content orders, BOOM’s Platform includes features that enable the simple management of a massive amount of orders. For instance, it is possible to create and monitor orders in \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" - order 500 photoshoots by uploading a CSV file through the platform’s \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"bulk upload feature.\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Moreover, our customers can integrate their systems with our stack, by means of our \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"Open RESTful API\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\". Through this option, they can book and manage orders from their systems (i.e. their Salesforce) and get notified for each stage of the production lifecycle. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"These flows are used for photo production, but the possibilities of BOOM’s platform are much wider. The entire company is currently focusing on developing it both in terms of new visual content to support but also in terms of \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\"new software capabilities\",\"type\":\"text\",\"marks\":[{\"type\":\"bold\"},{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]},{\"text\":\" that can simplify the life of our users by offering them a delightful user experience. \",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"paragraph\"},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Get in touch with us to start a new experience in visual content production and management!\",\"type\":\"text\",\"marks\":[{\"type\":\"styled\",\"attrs\":{\"class\":\"\"}}]}]},{\"type\":\"blok\",\"attrs\":{\"id\":\"7eca641a-0e8e-4271-a8e7-0d2088eaf706\",\"body\":[{\"_uid\":\"i-9d79ac98-106f-4559-b53e-abe9394ad32a\",\"type\":\"\",\"title\":\"Request a Demo\",\"button\":{\"id\":\"a7f1333c-e116-4fa7-aeaa-d44f7d39d409\",\"url\":\"\",\"linktype\":\"story\",\"fieldtype\":\"multilink\",\"cached_url\":\"get-started\"},\"component\":\"button\"}]}}]},\"hero_image\":{\"id\":2479371,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/9c235a0ff8/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"postAuthor\":\"a4fdec57-3205-4ec6-975e-026f446f0b07\",\"previewImage\":{\"id\":2479375,\"alt\":\"\",\"name\":\"\",\"focus\":null,\"title\":\"\",\"filename\":\"https://a.storyblok.com/f/111801/1200x667/31ca109b53/the-visual-production-platform-the-tech-behind-the-start-up.jpg\",\"copyright\":\"\",\"fieldtype\":\"asset\"},\"relatedPosts\":[\"65a123ee-6e02-463f-a9b0-21c711f04b4b\",\"bc44b448-1222-4d04-8614-6c55c716bbbd\",\"c6bbc6ad-6ef2-4925-8c73-e173ec44534b\"]},\"slug\":\"the-visual-production-platform-the-tech-behind-the-start-up\",\"full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"sort_by_date\":null,\"position\":80,\"tag_list\":[\"Platform Features\",\"Tech News\",\"Tech\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"34b0229f-98f3-4025-b113-0b5ace0ab9ea\",\"first_published_at\":\"2021-06-17T15:31:16.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"translated_slugs\":[{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/the-visual-production-platform-the-tech-behind-the-start-up\",\"name\":null,\"lang\":\"es\"}]}]},\"slug\":\"how-to-boost-efficient-designer-developer-collaborations-in-tech-companies\",\"full_slug\":\"resources/how-to-boost-efficient-designer-developer-collaborations-in-tech-companies\",\"sort_by_date\":null,\"position\":-90,\"tag_list\":[\"Tech\",\"Product Management\"],\"is_startpage\":false,\"parent_id\":49935401,\"meta_data\":null,\"group_id\":\"03ce1586-2a47-4939-b88a-71b50f7a1169\",\"first_published_at\":\"2021-09-14T15:20:14.000Z\",\"release_id\":null,\"lang\":\"default\",\"path\":null,\"alternates\":[],\"default_full_slug\":\"resources/how-to-boost-efficient-designer-developer-collaborations-in-tech-companies\",\"translated_slugs\":[{\"path\":\"resources/how-to-boost-efficient-designer-developer-collaborations-in-tech-companies\",\"name\":null,\"lang\":\"it\"},{\"path\":\"resources/how-to-boost-efficient-designer-developer-collaborations-in-tech-companies\",\"name\":null,\"lang\":\"fr\"},{\"path\":\"resources/how-to-boost-efficient-designer-developer-collaborations-in-tech-companies\",\"name\":null,\"lang\":\"es\"}]}]}","lang":"es","slug":"4-advantages-of-hexagonal-architecture","uuid":"b3047c02-44da-4767-a0f8-2334fa8a3f04","full_slug":"es/resources/4-advantages-of-hexagonal-architecture"}},"pageContext":{"id":"storyblokentry-74393022-es","lang":"es","name":"4 Advantages of Hexagonal Architecture","slug":"4-advantages-of-hexagonal-architecture","full_slug":"es/resources/4-advantages-of-hexagonal-architecture","default_full_slug":"resources/4-advantages-of-hexagonal-architecture","translated_slugs":[{"path":"resources/4-advantages-of-hexagonal-architecture","lang":"it"},{"path":"resources/4-advantages-of-hexagonal-architecture","lang":"fr"},{"path":"resources/4-advantages-of-hexagonal-architecture","lang":"es"}],"field_component":"Post","locale":{"lang":"es","content":{"_uid":"081c53e6-0c52-47e3-aacf-75651b63f990","Links":[{"Link":{"id":"","url":"","linktype":"story","fieldtype":"multilink","cached_url":"/es/","prep":true},"_uid":"df943cb9-cb3a-444a-8f0c-7a30225daa26","Title":"Product","Subnav":[{"Link":{"id":"","url":"/how-it-works/","linktype":"url","fieldtype":"multilink","cached_url":"/how-it-works/"},"_uid":"55d20a57-4f22-4acf-a4ec-d738c17d9891","Title":"How it works","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"/features/","linktype":"url","fieldtype":"multilink","cached_url":"/features/"},"_uid":"4f42bc33-a60e-454c-9128-83c9b4590b55","Title":"Features","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"/integrations/","linktype":"url","fieldtype":"multilink","cached_url":"/integrations/"},"_uid":"b9d2bb47-c2c3-4392-9839-ce9c76caa76b","Title":"Integrations","Subnav":[],"component":"Nav Link"}],"component":"Nav Link"},{"Link":{"id":"","url":"/enterprise/","linktype":"url","fieldtype":"multilink","cached_url":"/enterprise/"},"_uid":"f74c4ad6-d5ed-4d7b-bed3-de6ae8eee57f","Title":"Enterprise","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"","linktype":"story","fieldtype":"multilink","cached_url":"/es/","prep":true},"_uid":"45634d29-3f61-4330-8295-d2383ec67871","Title":"Company","Subnav":[{"Link":{"id":"","url":"/about/","linktype":"url","fieldtype":"multilink","cached_url":"/about/"},"_uid":"32813126-8f8c-40a2-a7d8-16d00fa89f65","Title":"About us","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"/careers/","linktype":"url","fieldtype":"multilink","cached_url":"/careers/"},"_uid":"e11c7d66-0734-42d3-ad95-8fa66ab892d6","Title":"Careers","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"/contact/","linktype":"url","fieldtype":"multilink","cached_url":"/contact/"},"_uid":"2d1d44f4-9346-4f75-bb1f-7cb7ac366ea6","Title":"Contact","Subnav":[],"component":"Nav Link"}],"component":"Nav Link"},{"Link":{"id":"","url":"/resources/","linktype":"url","fieldtype":"multilink","cached_url":"/resources/"},"_uid":"5df5a4e4-3a5c-4040-a201-cdf3236d6c8b","Title":"Resources","Subnav":[],"component":"Nav Link"}],"Topic":"Topic","share":"Compartir","submit":"Enviar","category":"Categoría","loadMore":"Carga más","readMore":"Leer más","component":"Global","subscribe":"Suscribirme","emailLabel":"Correo electrónico","legalLinks":[{"Link":{"id":"","url":"/legal/terms-conditions","linktype":"url","fieldtype":"multilink","cached_url":"/legal/terms-conditions"},"_uid":"6c5872a7-7b1a-4076-ad80-7f773c8c42b2","Title":"Terms & Conditions","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"/legal/privacy-policy","linktype":"url","fieldtype":"multilink","cached_url":"/legal/privacy-policy"},"_uid":"1fdace59-f886-4dcf-80ff-9d62110c2245","Title":"Privacy Policy","Subnav":[],"component":"Nav Link"},{"Link":{"id":"","url":"/legal/cookie-policy","linktype":"url","fieldtype":"multilink","cached_url":"/legal/cookie-policy"},"_uid":"f83565ea-a3af-422b-badf-d72ed798fdf2","Title":"Cookie Policy","Subnav":[],"component":"Nav Link"}],"phoneLabel":"Introduce tu número de teléfono","termsLabel":"Acepto la <a class=\"underline text-[#266DD9]\" href=\"/es/legal/privacy-policy\" target=\"_blank\">Política de privacidad de BOOM</a> y acepto recibir mensajes promocionales de BOOM sobre sus productos y servicios.","footerLegal":" BOOM IMAGE STUDIO S.p.A, con domicilio social en Via Galvano Fiamma 18, 20129 Milano ITALIA, CÓDIGO FISCAL y NÚMERO DE IVA 10189460966. Registrada a cargo de la Cámara de Comercio de Milán, Monza, Brianza y Lodi; capital social de 12 857,14 euros.","companyLabel":"Introduce el nombre de la empresa","countryLabel":"Seleccionar país","headerActions":[{"_uid":"546af9a9-67d8-496e-a735-3881d0ce060b","type":"","title":"Iniciar sesión","button":{"id":"","url":"https://platform.boom.co/login","linktype":"url","fieldtype":"multilink","cached_url":"https://platform.boom.co/login"},"component":"button"},{"_uid":"c7942e83-dd6f-4119-89a1-be41171984d7","type":"","title":"Solicita una Demo","button":{"id":"a7f1333c-e116-4fa7-aeaa-d44f7d39d409","url":"","linktype":"story","fieldtype":"multilink","cached_url":"/es/get-started","prep":true},"component":"button"}],"headerBarLink":[{"_uid":"a0bf023a-fea4-478e-9347-96b9b6c24c35","type":"icon-link","title":"Empieza aquí","button":{"id":"","url":"/es/fotografos","linktype":"url","fieldtype":"multilink","cached_url":"/es/fotografos"},"component":"button"}],"lastNameLabel":"Apellidos","readFullStory":"LEER LA HISTORIA COMPLETA","enterYourEmail":"Introduce tu correo electrónico","firstNameLabel":"Nombre","headerBarGroup":"","relatedStories":"Historias relacionadas","rightsReserved":"Todos los derechos reservados.","newsletterLabel":"Acepto suscribirme al boletín de BOOM. ","relatedArticles":"Artículos relacionados","emailPlaceholder":"example@email.com","footerCTAButtons":[{"_uid":"bd778eb9-4527-4037-bdbc-9e5e87d88a89","type":"default","title":"Empezar","button":{"id":"a7f1333c-e116-4fa7-aeaa-d44f7d39d409","url":"","anchor":"","linktype":"story","fieldtype":"multilink","cached_url":"/es/get-started","prep":true},"component":"button"},{"_uid":"229a4221-b01b-4dad-a470-91b230b8c6c8","type":"icon-link","title":"Ver todos los planes","button":{"id":"97968dd5-8d8b-4a84-bdaa-f58e82ef3aab","url":"","linktype":"story","fieldtype":"multilink","cached_url":"/es/pricing","prep":true},"component":"button"}],"footerCTAHeading":"Transformación visual en un instante","headerBarHeading":"¿Eres creador de contenido visual? ","phonePlaceholder":"Introduce tu número de teléfono","newsletterHeading":"Suscríbete a nuestro boletín","companyPlaceholder":"Nombre de la empresa","countryPlaceholder":"País","companyRegistration":"BOOM IMAGE STUDIO S.P.A. P.IVA 10189460966","lastNamePlaceholder":"Introduce tus apellidos","ordersPerMonthLabel":"¿Cuántas sesiones necesitarías al mes?","firstNamePlaceholder":"Introduce tu nombre","numberEmployeesLabel":"Número de empleados","newsletterPlaceholder":"example@email.com","secondaryFooterCTAButton":[{"_uid":"0d40c928-ff16-4aaa-8f9e-98f479cc56c0","type":"icon-link","title":"Empieza aquí","button":{"id":"","url":"/es/fotografos","linktype":"url","fieldtype":"multilink","cached_url":"/es/fotografos"},"component":"button"}],"sidebarNewsletterContent":"Suscríbete a nuestro boletín ocasional para obtener información de la industria inigualable.","sidebarNewsletterHeading":"Llévate un poco de conocimiento a casa","ordersPerMonthPlaceholder":"Please select *","secondaryFooterCTAHeading":"¿Eres creador de contenido visual?","newsletterConfirmationHeading":"THANKS FOR SIGNING UP!<br/><div style=\"opacity:.8;font-size:.9rem;margin-top:.1rem\">You can unsubscribe at any time</div>"}}}},"staticQueryHashes":["1379303857","2380982641","2804000090"]}