SlideShare uma empresa Scribd logo
1 de 102
Alinhando o design às
métricas e conversões.


     Rafael Lima - @rafaelp
Rafael Lima
                      @rafaelp




Qual o objetivo de
  um website?
Rafael Lima
 @rafaelp
Rafael Lima
             @rafaelp




Ecommerce




    ?
Rafael Lima
             @rafaelp




Ecommerce




 Vender
Rafael Lima
                  @rafaelp




Site de Evento




      ?
Rafael Lima
                     @rafaelp




 Site de Evento




Captar Inscrições
Rafael Lima
                         @rafaelp




Empresa de Engenharia




         ?
Rafael Lima
                         @rafaelp




Empresa de Engenharia




Receber uma Ligação
Rafael Lima
                  @rafaelp




Aplicativo Web




      ?
Rafael Lima
                      @rafaelp




  Aplicativo Web




Sign-up no Sistema
Rafael Lima
                       @rafaelp




Site de Restaurante




        ?
Rafael Lima
                       @rafaelp




Site de Restaurante




Pedido de Delivery
Rafael Lima
        @rafaelp




Blog




 ?
Rafael Lima
                  @rafaelp




    Blog




Ler outro post
Rafael Lima
                     @rafaelp




Serviço de Design




       ?
Rafael Lima
                     @rafaelp




Serviço de Design




Solicitar cotação
Rafael Lima
                      @rafaelp




Todo site deve ter
um objetivo bem
    definido
Rafael Lima
                @rafaelp




Como devo montar
     o site?
Rafael Lima
              @rafaelp




    NO
Big Design
 Up-Front
Rafael Lima
                @rafaelp




Landing Page
Rafael Lima
                              @rafaelp




     Landing Page
• Chamada Principal
• Pitch
• Call to Action
• Imagem/Foto do Resultado
• Benefícios
• Form Newsletter
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
                  @rafaelp




  Só tem um
probleminha...
Rafael Lima
                   @rafaelp




   Você não vai
acertar de primeira
         :/
Rafael Lima
 @rafaelp
Rafael Lima
                    @rafaelp




   Montar uma
Landing Page não
  garante que o
  objetivo seja
    atingido
Rafael Lima
                     @rafaelp




O que devo saber
  para atingir o
 objetivo, então?
Rafael Lima
                       @rafaelp




        Conceitos
• Visitantes
• Leads
• Prospects
• Clientes
• Funil de Vendas
• Taxa de Conversão
Rafael Lima
                   @rafaelp




   Visitantes
        x
Leads/Prospects
        x
    Clientes
Rafael Lima
                   @rafaelp




Funil de Vendas
Rafael Lima
               @rafaelp




VISITANTES
  LEADS
  PROSPECTS

   CLIENTES
Rafael Lima
                 @rafaelp




Taxa de Conversão
Rafael Lima
                                              @rafaelp




10.000 VISITANTES

  1.000 INSCRITOS
                        }    TC = 500/10.000 =




     25 PAGANTES
                   }   TC = 25/500 = 2,5%
Rafael Lima
                  @rafaelp




 O design aplicado
 no front-end deve
   ser feito para
converter o máximo
    de visitantes
Rafael Lima
                  @rafaelp




Como mensurar
esses números?
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
             @rafaelp




Pageviews
    x
  Events
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
                                                                            @rafaelp




<script type="text/javascript">
//<![CDATA[

var mpq = [];
mpq.push(["init", "XXXXXXXXXXXXXXXXXXX"]);
(function() {
  var mp = document.createElement("script"); mp.type = "text/javascript"; mp.async =
true;
  mp.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + "//
api.mixpanel.com/site_media/js/api/mixpanel.js";
  var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(mp,
s);
})();

//]]>
</script>
Rafael Lima
                                                                                   @rafaelp



<script type="text/javascript">
//<![CDATA[

mpq.push(['set_config', {'test': false}])
mixpanel_distinct_id = get_visitor_guid();

mpq.push(['register_once', {'distinct_id': mixpanel_distinct_id}, 'all', "False", 31])

//]]>
</script>



<script type="text/javascript">
//<![CDATA[

mpq.push(['track', 'visited new account', {}]);

//]]>
</script>
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
                                          @rafaelp




<script type="text/javascript">
//<![CDATA[

mpq.push(["track", "homepage"]);



$("#video-preview").click(function() {
  mpq.push(["track", "video"]);
});

//]]>
</script>
Rafael Lima
                    @rafaelp




   Não é só para
Javascript. Pode ser
usado no back-end.
Rafael Lima
                                                               @rafaelp




# account_observer.rb

class AccountObserver < ActiveRecord::Observer

  def after_create(account)
    Delayed::Job.enqueue MixpanelJob.new('account created',
{:distinct_id => account.mixpanel_distinct_id}) end

  def after_destroy(account)
    Delayed::Job.enqueue MixpanelJob.new('account cancelled',
{:distinct_id => account.mixpanel_distinct_id})
  end

end
Rafael Lima
                                                          @rafaelp



# Gemfile

source "http://rubygems.org"

gem 'rails', "3.0.3"
gem 'mixpanel', '0.7.0'



# mixpanel_job.rb

class MixpanelJob < Struct.new(:event, :properties)
  def perform
    mixpanel = Mixpanel.new(ENV['MIXPANEL_TOKEN'], {})
    mixpanel.track_event(event, properties)
  end
end
Rafael Lima
 @rafaelp
Rafael Lima
                   @rafaelp




Somente medir não
 resolve. Até agora
  demos apenas o
  primeiro passo.
Rafael Lima
                    @rafaelp




Como melhorar as
  conversões?
Rafael Lima
                                 @rafaelp




Testes A/B
(A/B Testing / Split Testing)
Rafael Lima
                                                                                        @rafaelp




http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page
Rafael Lima
                                                                                        @rafaelp




http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page
Rafael Lima
                                                                                        @rafaelp




http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page
Rafael Lima
                                                                    @rafaelp




http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
Rafael Lima
                                                                    @rafaelp




http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
Rafael Lima
                                                                    @rafaelp




http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
Rafael Lima
                                                                    @rafaelp




http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
Rafael Lima
                                                                    @rafaelp




http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
Rafael Lima
                                                                    @rafaelp




http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
Rafael Lima
                                                                      @rafaelp




http://dmix.ca/2010/05/how-we-increased-our-conversion-rate-by-72/
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
                   @rafaelp




Esta fase não acaba
 nunca. Você pode
 ficar eternamente
fazendo testes A/B.
Rafael Lima
                  @rafaelp




Dicas Práticas
Rafael Lima
                                     @rafaelp




 Fotos de Produtos
• Foco no Produto
• Fotos de mais de um ângulo
• Mostre alguém usando
• Fotos do maior tamanho possível
• Mostre as diferentes opções
• Mostre pessoas apreciando o
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
 @rafaelp
Rafael Lima
                                       @rafaelp




           Botões
• Use botões grandes
• Inclua ícone nos botões
• Adicione profundidade
• Adicione efeito ao passar o mouse
• Use uma cor diferente da paleta
• Descreva o próximo passo
Rafael Lima
 @rafaelp
Rafael Lima
                                    @rafaelp




      E-commerce
• Descreva o produto com os detalhes
• Não peça cadastro
• Apresente as formas de pagamento
• Não apresente menu nem links
• Utilize selos de servidor seguro
• Apresente os dados da empresa
Rafael Lima
 @rafaelp
Rafael Lima
                  @rafaelp




 Qual o percentual
médio de abandono
  de carrinho de
    compras?
Rafael Lima
          @rafaelp




A. 27%
B. 59%
C. 36%
D. 15%
Rafael Lima
                                         @rafaelp




         A. 27%
         B. 59%
         C. 36%
         D. 15%
MarketingSherpa Ecommerce Study, 2006
Rafael Lima
                    @rafaelp




Para finalizar...
Rafael Lima
                            @rafaelp




   Recapitulando...
1. Definir Objetivo
2. Determinar Conversões
3. Mensurar o Funil
4. Realizar Testes A/B
5. Adaptar o Site
   ...
Rafael Lima
                   @rafaelp




Se coloque no lugar
 do usuário e use o
      seu site
Rafael Lima
 @rafaelp
Rafael Lima
            @rafaelp




Sucesso!
Rafael Lima
             @rafaelp




Obrigado!
Rafael Lima
                                    @rafaelp




   Obrigado!
Pessoal
http://twitter.com/rafaelp
http://rafael.adm.br


BielSystems
http://bielsystems.com.br


Workshop de Empreendedorismo
Bootstrappers
http://bootstrappers.com.br/workshop


Startup DEV
Rafael Lima
                                                                           @rafaelp




              Referências
http://www.slideshare.net/EcommmerceSummit/42-ecommercesummit

http://www.marketingsherpa.com/content/?q=node/2973

http://www.slideshare.net/rpanini/a-importncia-do-design-no-ecommerce

http://www.smashingmagazine.com/2010/06/24/the-ultimate-guide-to-a-b-testing/

http://www.flickr.com/photos/kdlc/877547288/

http://www.flickr.com/photos/jeff_snodgrass/1473675982/
Rafael Lima
                                       @rafaelp




           Copyleft
• Use essa apresentação como quiser
• Distribua para quem quiser
• Altere o quanto quiser
• Não precisa nem se preocupar em
  citar o autor

• Sinta-se livre para fazer
  absolutamente o que quiser com

Mais conteúdo relacionado

Destaque

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destaque (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Alinhando o design às metricas e conversões

  • 1. Alinhando o design às métricas e conversões. Rafael Lima - @rafaelp
  • 2. Rafael Lima @rafaelp Qual o objetivo de um website?
  • 4. Rafael Lima @rafaelp Ecommerce ?
  • 5. Rafael Lima @rafaelp Ecommerce Vender
  • 6. Rafael Lima @rafaelp Site de Evento ?
  • 7. Rafael Lima @rafaelp Site de Evento Captar Inscrições
  • 8. Rafael Lima @rafaelp Empresa de Engenharia ?
  • 9. Rafael Lima @rafaelp Empresa de Engenharia Receber uma Ligação
  • 10. Rafael Lima @rafaelp Aplicativo Web ?
  • 11. Rafael Lima @rafaelp Aplicativo Web Sign-up no Sistema
  • 12. Rafael Lima @rafaelp Site de Restaurante ?
  • 13. Rafael Lima @rafaelp Site de Restaurante Pedido de Delivery
  • 14. Rafael Lima @rafaelp Blog ?
  • 15. Rafael Lima @rafaelp Blog Ler outro post
  • 16. Rafael Lima @rafaelp Serviço de Design ?
  • 17. Rafael Lima @rafaelp Serviço de Design Solicitar cotação
  • 18. Rafael Lima @rafaelp Todo site deve ter um objetivo bem definido
  • 19. Rafael Lima @rafaelp Como devo montar o site?
  • 20. Rafael Lima @rafaelp NO Big Design Up-Front
  • 21. Rafael Lima @rafaelp Landing Page
  • 22. Rafael Lima @rafaelp Landing Page • Chamada Principal • Pitch • Call to Action • Imagem/Foto do Resultado • Benefícios • Form Newsletter
  • 26. Rafael Lima @rafaelp Só tem um probleminha...
  • 27. Rafael Lima @rafaelp Você não vai acertar de primeira :/
  • 29. Rafael Lima @rafaelp Montar uma Landing Page não garante que o objetivo seja atingido
  • 30. Rafael Lima @rafaelp O que devo saber para atingir o objetivo, então?
  • 31. Rafael Lima @rafaelp Conceitos • Visitantes • Leads • Prospects • Clientes • Funil de Vendas • Taxa de Conversão
  • 32. Rafael Lima @rafaelp Visitantes x Leads/Prospects x Clientes
  • 33. Rafael Lima @rafaelp Funil de Vendas
  • 34. Rafael Lima @rafaelp VISITANTES LEADS PROSPECTS CLIENTES
  • 35. Rafael Lima @rafaelp Taxa de Conversão
  • 36. Rafael Lima @rafaelp 10.000 VISITANTES 1.000 INSCRITOS } TC = 500/10.000 = 25 PAGANTES } TC = 25/500 = 2,5%
  • 37. Rafael Lima @rafaelp O design aplicado no front-end deve ser feito para converter o máximo de visitantes
  • 38. Rafael Lima @rafaelp Como mensurar esses números?
  • 41. Rafael Lima @rafaelp Pageviews x Events
  • 51. Rafael Lima @rafaelp <script type="text/javascript"> //<![CDATA[ var mpq = []; mpq.push(["init", "XXXXXXXXXXXXXXXXXXX"]); (function() { var mp = document.createElement("script"); mp.type = "text/javascript"; mp.async = true; mp.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + "// api.mixpanel.com/site_media/js/api/mixpanel.js"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(mp, s); })(); //]]> </script>
  • 52. Rafael Lima @rafaelp <script type="text/javascript"> //<![CDATA[ mpq.push(['set_config', {'test': false}]) mixpanel_distinct_id = get_visitor_guid(); mpq.push(['register_once', {'distinct_id': mixpanel_distinct_id}, 'all', "False", 31]) //]]> </script> <script type="text/javascript"> //<![CDATA[ mpq.push(['track', 'visited new account', {}]); //]]> </script>
  • 55. Rafael Lima @rafaelp <script type="text/javascript"> //<![CDATA[ mpq.push(["track", "homepage"]); $("#video-preview").click(function() { mpq.push(["track", "video"]); }); //]]> </script>
  • 56. Rafael Lima @rafaelp Não é só para Javascript. Pode ser usado no back-end.
  • 57. Rafael Lima @rafaelp # account_observer.rb class AccountObserver < ActiveRecord::Observer def after_create(account) Delayed::Job.enqueue MixpanelJob.new('account created', {:distinct_id => account.mixpanel_distinct_id}) end def after_destroy(account) Delayed::Job.enqueue MixpanelJob.new('account cancelled', {:distinct_id => account.mixpanel_distinct_id}) end end
  • 58. Rafael Lima @rafaelp # Gemfile source "http://rubygems.org" gem 'rails', "3.0.3" gem 'mixpanel', '0.7.0' # mixpanel_job.rb class MixpanelJob < Struct.new(:event, :properties) def perform mixpanel = Mixpanel.new(ENV['MIXPANEL_TOKEN'], {}) mixpanel.track_event(event, properties) end end
  • 60. Rafael Lima @rafaelp Somente medir não resolve. Até agora demos apenas o primeiro passo.
  • 61. Rafael Lima @rafaelp Como melhorar as conversões?
  • 62. Rafael Lima @rafaelp Testes A/B (A/B Testing / Split Testing)
  • 63. Rafael Lima @rafaelp http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page
  • 64. Rafael Lima @rafaelp http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page
  • 65. Rafael Lima @rafaelp http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page
  • 66. Rafael Lima @rafaelp http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
  • 67. Rafael Lima @rafaelp http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
  • 68. Rafael Lima @rafaelp http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
  • 69. Rafael Lima @rafaelp http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
  • 70. Rafael Lima @rafaelp http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
  • 71. Rafael Lima @rafaelp http://www.dustincurtis.com/you_should_follow_me_on_twitter.html
  • 72. Rafael Lima @rafaelp http://dmix.ca/2010/05/how-we-increased-our-conversion-rate-by-72/
  • 81. Rafael Lima @rafaelp Esta fase não acaba nunca. Você pode ficar eternamente fazendo testes A/B.
  • 82. Rafael Lima @rafaelp Dicas Práticas
  • 83. Rafael Lima @rafaelp Fotos de Produtos • Foco no Produto • Fotos de mais de um ângulo • Mostre alguém usando • Fotos do maior tamanho possível • Mostre as diferentes opções • Mostre pessoas apreciando o
  • 87. Rafael Lima @rafaelp Botões • Use botões grandes • Inclua ícone nos botões • Adicione profundidade • Adicione efeito ao passar o mouse • Use uma cor diferente da paleta • Descreva o próximo passo
  • 89. Rafael Lima @rafaelp E-commerce • Descreva o produto com os detalhes • Não peça cadastro • Apresente as formas de pagamento • Não apresente menu nem links • Utilize selos de servidor seguro • Apresente os dados da empresa
  • 91. Rafael Lima @rafaelp Qual o percentual médio de abandono de carrinho de compras?
  • 92. Rafael Lima @rafaelp A. 27% B. 59% C. 36% D. 15%
  • 93. Rafael Lima @rafaelp A. 27% B. 59% C. 36% D. 15% MarketingSherpa Ecommerce Study, 2006
  • 94. Rafael Lima @rafaelp Para finalizar...
  • 95. Rafael Lima @rafaelp Recapitulando... 1. Definir Objetivo 2. Determinar Conversões 3. Mensurar o Funil 4. Realizar Testes A/B 5. Adaptar o Site ...
  • 96. Rafael Lima @rafaelp Se coloque no lugar do usuário e use o seu site
  • 98. Rafael Lima @rafaelp Sucesso!
  • 99. Rafael Lima @rafaelp Obrigado!
  • 100. Rafael Lima @rafaelp Obrigado! Pessoal http://twitter.com/rafaelp http://rafael.adm.br BielSystems http://bielsystems.com.br Workshop de Empreendedorismo Bootstrappers http://bootstrappers.com.br/workshop Startup DEV
  • 101. Rafael Lima @rafaelp Referências http://www.slideshare.net/EcommmerceSummit/42-ecommercesummit http://www.marketingsherpa.com/content/?q=node/2973 http://www.slideshare.net/rpanini/a-importncia-do-design-no-ecommerce http://www.smashingmagazine.com/2010/06/24/the-ultimate-guide-to-a-b-testing/ http://www.flickr.com/photos/kdlc/877547288/ http://www.flickr.com/photos/jeff_snodgrass/1473675982/
  • 102. Rafael Lima @rafaelp Copyleft • Use essa apresentação como quiser • Distribua para quem quiser • Altere o quanto quiser • Não precisa nem se preocupar em citar o autor • Sinta-se livre para fazer absolutamente o que quiser com

Notas do Editor

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. Em marketing, landing page &amp;#xE9; uma p&amp;#xE1;gina na web &amp;#xFA;nica que aparece como resposta ao clique em um an&amp;#xFA;ncio.\nSe o seu objetivo &amp;#xE9; \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. A n&amp;#xF5;a ser que voc&amp;#xEA; seja m&amp;#xE1;gico ou tenha uma bola de cristal.\nAssumir que voc&amp;#xEA; ir&amp;#xE1; errar &amp;#xE9; o primeiro passo para se preparar para acertar posteriormente.\n\n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. Mas isso &amp;#xE9; papo pra outro evento n&amp;#xE9;!\nIsso aqui &amp;#xE9; Front in Rio...\n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. Utilizaram o Google Web Optimizer\nRodaram com 4000 pageviews\nEles fizeram outros testes que converteram 27% 15% e 7%\n
  64. Utilizaram o Google Web Optimizer\nRodaram com 4000 pageviews\nEles fizeram outros testes que converteram 27% 15% e 7%\n
  65. Queria testar comandos para os usu&amp;#xE1;rios\nRodou em um blog para 5.000 visitantes &amp;#xFA;nicos\nChegou a testar outras variantes al&amp;#xE9;m destas\nChegou a testar usando &amp;#x201C;por favor&amp;#x201D;, mas n&amp;#xE3;o rolou\n
  66. Queria testar comandos para os usu&amp;#xE1;rios\nRodou em um blog para 5.000 visitantes &amp;#xFA;nicos\nChegou a testar outras variantes al&amp;#xE9;m destas\nChegou a testar usando &amp;#x201C;por favor&amp;#x201D;, mas n&amp;#xE3;o rolou\n
  67. Queria testar comandos para os usu&amp;#xE1;rios\nRodou em um blog para 5.000 visitantes &amp;#xFA;nicos\nChegou a testar outras variantes al&amp;#xE9;m destas\nChegou a testar usando &amp;#x201C;por favor&amp;#x201D;, mas n&amp;#xE3;o rolou\n
  68. Queria testar comandos para os usu&amp;#xE1;rios\nRodou em um blog para 5.000 visitantes &amp;#xFA;nicos\nChegou a testar outras variantes al&amp;#xE9;m destas\nChegou a testar usando &amp;#x201C;por favor&amp;#x201D;, mas n&amp;#xE3;o rolou\n
  69. \n
  70. 600 participantes\nConseguiram 34% de aumento nas convers&amp;#xF5;es\nClaro que se isso fosse no site do Bradesco n&amp;#xE3;o traria resultado, pois a interface toda &amp;#xE9; vermelha!\n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. Dicas para que voc&amp;#xEA;s n&amp;#xE3;o precisem fazer tantos Testes A/B\n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  92. \n
  93. \n
  94. \n
  95. E se voc&amp;#xEA; tiver fazendo um projeto para um cliente.\nEle vai ficar com essa cara a&amp;#xED;..\n&amp;#x201C;Caramba... como &amp;#xE9; que ele consegue fazer isso!?&amp;#x201D;\n
  96. \n
  97. \n
  98. \n
  99. \n