Blame view
src/components/SingleScreengrabOneInsight.vue
5.76 KB
de0f96bc5
|
1 2 3 4 5 |
<template> <main class="landing-page"> <div class="container-fluid episode-intro"> <nav class="navbar navbar-expand-sm spotLight-nav"> |
56f4b7548
|
6 |
<a class="navbar-brand" href="javascript:void(0);"><img src="../assets/images/logo.png"></a> |
de0f96bc5
|
7 8 9 10 11 12 |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample03" aria-controls="navbarsExample03" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span> </button> <div class="user-profile-photo insights-profile"> |
56f4b7548
|
13 |
<a href="javascript:void(0);"><img src="../assets/images/user.png"></a> |
de0f96bc5
|
14 15 16 17 18 19 20 21 22 23 24 25 |
</div> </nav> <!-- menu wrapper --> <div class="intro-startup"> <div class="screengrab-wrp"> <img src="../assets/images/saved-for-letter.png" /> <div class="single-left-Insight-comments screengrab-lspc"> <img src="../assets/images/author-thoughts.svg" class="author-thoughts" /> <div class="single-author-li-comments"> <div class="a-intro-comments custom-c-style"> <p>I wonder what the difference between “ <strong>Dunzo Assistant </strong>” and “<strong>Pickup and Drop </strong>” are. If they are the same, there are two “call to actions” for the same workflow</p> <ul class="rly-comment-set"> |
56f4b7548
|
26 27 |
<li><img src="../assets/images/color-heart.svg" /> <a href="javascript:void(0);">4</a></li> <li><img src="../assets/images/rply.svg" /> <a href="javascript:void(0);">Reply</a></li> |
de0f96bc5
|
28 29 30 31 32 33 34 35 36 37 |
</ul> </div><!-- comments box --> </div><!-- single author comments --> </div><!-- single mobile Left insight --> <div class="c-product-insight-wrp screengrab-rspc"> <div class="single-author-li-comments "> <div class="a-intro-comments custom-selected-style"> <img src="../assets/images/rect.svg" class="rect" /> <div class="top-wrp"> |
56f4b7548
|
38 |
PRODUCT Insight <a href="javascript:void(0);"><img src="../assets/images/link-red.svg" /></a> |
de0f96bc5
|
39 40 41 42 43 44 45 |
</div> <div class="top-head">Decide on using multiple call to action vs single call to action depending on the stage of the user journey</div> <p>Marketing 101 teaches us to use one single, call to action (CTA) at the top of the funnel before the uer has shown interest in the product. <br><br> When the user is already onboarded and is in the <strong> engage stage </strong>, it may be better to use a single CTA for each use case in order to <strong> avoid ambiguity.</strong> </p> <div class="footer"> |
56f4b7548
|
46 |
<a href="javascript:void(0);" class="cit-16">16 Citations</a> |
5c9c1581c
|
47 |
<!-- <a href="javascript:void(0);" class="ft-share"><img src="../assets/images/reply-red.svg" /> Share from library</a> --> |
de0f96bc5
|
48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
</div><!-- footer --> </div><!-- comments box --> </div><!-- single author comments --> </div><!-- single mobile Right insight --> </div><!-- Single Mobile Insight --> <div class="footer-nav"> <div class="footer-top white-bg"> <div class="row"> <div class="col-6 col-sm-7 col-md-7 col-lg-6 "> <div class="row h-100p"> <div class="col-4 col-sm-5 col-md-4 col-lg-4 col-xl-4"> <ul class="top-intro-bt"> |
56f4b7548
|
62 63 |
<li><a href="javascript:void(0);"><img src="../assets/images/skip-prev.svg"> Prev</a></li> <li><a href="javascript:void(0);"><img src="../assets/images/skip-next.svg"> Skip to next slide</a></li> |
de0f96bc5
|
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
</ul> </div> <div class="col-8 col-sm-7 col-md-5 col-lg-8 col-xl-8 bord-r"> <div class="ft-comments-group no-comment-count"> <div class="row"> <div class="col-12"> <img src="../assets/images/u-comments.svg" class="no-comments-img" /> <div class="comments-detail"> <span class="no-c-yet">No comments yet</span> <p>Be the first one to post a comment to start a discussion</p> </div><!-- comments detail --> </div> </div> </div><!-- comments Group --> </div></div> </div> <div class="col-6 col-sm-5 col-md-6 col-lg-6 "> <div class="comment-frm no-c-frm"> <div class="row"> <div class="col-8 col-sm-8 col-md-8 col-lg-10 col-xl-10"> <div class="form-group frm-wdth"> |
145dd9bde
|
86 |
<input type="text" class="form-control" placeholder="Something on your mind?" id=""> |
de0f96bc5
|
87 88 |
</div></div> <div class="col-2 col-sm-4 col-md-4 col-lg-4 col-xl-2"> |
56f4b7548
|
89 |
<a href="javascript:void(0);" class="add-comment"><img src="../assets/images/add-comment.svg" /> Comment</a> |
de0f96bc5
|
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
</div> </div><!-- comment from --> </div> </div></div> </div><!-- footer top --> <div class="footer-bottom"> <ul> <li class="active"></li> <li></li> </ul> </div><!-- footer top --> </div><!-- footer --> </div> <!-- body wrapper --> </div> <!-- main wrapper --> </main> </template> <script> import Vue from "vue"; import router from "../router"; export default { name: "SingleScreengrabOneInsight", data() { return {}; }, mounted() {}, methods: { goToLogin() { |
56f4b7548
|
122 |
this.$router.push("/login"); |
de0f96bc5
|
123 124 |
}, goToSignUp() { |
56f4b7548
|
125 |
this.$router.push("/"); |
de0f96bc5
|
126 127 128 129 130 |
}, }, }; </script> |