Blame view

src/components/TwoAuthorDesktop.vue 3.54 KB
de0f96bc5   Gurvinder Singh   new files
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   Digvijay Singh   landing page url ...
6
          <a class="navbar-brand" href="javascript:void(0);"><img src="../assets/images/logo.png"></a>
de0f96bc5   Gurvinder Singh   new files
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   Digvijay Singh   landing page url ...
13
            <a href="javascript:void(0);"><img src="../assets/images/user.png"></a>
de0f96bc5   Gurvinder Singh   new files
14
15
16
17
18
19
20
21
22
          </div>
        </nav>
        <!-- menu wrapper -->
      <div class="intro-startup">
        <div class="two-author-desktop">
                 <div class="author-two-desktop">
            <div class="comment-box-s-1 custom-2-author">
            <p>👋 Hi there! My name is <strong> Rashmi</strong>, and these are a few observations on the user workflows that I had while using the WhiteHat Jr. app.</p>
           <div class="footer">
56f4b7548   Digvijay Singh   landing page url ...
23
             <img src="../assets/images/comment-user.svg" />  <a href="javascript:void(0);">View My Profile</a>
de0f96bc5   Gurvinder Singh   new files
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
             </div><!-- footer -->
            </div><!-- comment box 1 -->
        
            <div class="user-photo">
              <img src="../assets/images/author-two.svg" class="author-two-photo" />
            </div>
            </div><!-- comment box -->
             <div class="samsung-compare-c desktop-two-logo-spc">
            <div class="logo-1"><img src="../assets/images/segment.png" /></div><!-- logo 1 -->
            </div><!-- compare -->
           
                <div class="comment-box author-one-desktop">
            <div class="comment-box-s-1">
            <p>👋 Hi there! My name is <strong> Rashmi</strong>, and these are a few observations on the user workflows that I had while using the WhiteHat Jr. app.</p>
           <div class="footer">
56f4b7548   Digvijay Singh   landing page url ...
39
             <img src="../assets/images/comment-user.svg" />  <a href="javascript:void(0);">View My Profile</a>
de0f96bc5   Gurvinder Singh   new files
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
             </div><!-- footer -->
            </div><!-- comment box 1 -->
                <div class="comment-box-s-1 comment-w-397">
            <p>
              Use arrow keys to navigate <br/>
  <img src="../assets/images/key-arrow.jpg" class="key-arrow" />
            </p>
            </div><!-- comment box 1 -->
            <div class="user-photo">
              <img src="../assets/images/comment-photo.png" />
            </div>
            </div><!-- comment box -->
          </div><!-- samsung g 10 -->
        <div class="footer-nav">
          <div class="footer-top">
                <ul class="top-intro-bt">
56f4b7548   Digvijay Singh   landing page url ...
56
57
              <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   Gurvinder Singh   new files
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
            </ul>
            </div><!-- footer top -->
          <div class="footer-bottom">
            <ul>
              <li></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: "TwoAuthorDesktop",
  
    data() {
      return {};
    },
    mounted() {},
    methods: {
      goToLogin() {
56f4b7548   Digvijay Singh   landing page url ...
88
        this.$router.push("/login");
de0f96bc5   Gurvinder Singh   new files
89
90
      },
      goToSignUp() {
56f4b7548   Digvijay Singh   landing page url ...
91
        this.$router.push("/");
de0f96bc5   Gurvinder Singh   new files
92
93
94
95
96
      },
      
    },
  };
  </script>