TwoAuthor.vue 3.63 KB
<template>
  <main class="landing-page">
   
    <div class="container-fluid episode-intro">
    <nav class="navbar navbar-expand-sm spotLight-nav">
        <a class="navbar-brand" href="javascript:void(0);"><img src="../assets/images/logo.png"></a>
        <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">
          <a href="javascript:void(0);"><img src="../assets/images/lock.svg"></a>
        </div>
      </nav>
      <!-- menu wrapper -->
    <div class="intro-startup">
      <div class="smasung-g-10wrp">
               <div class="author-two">
          <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">
           <img src="../assets/images/comment-user.svg" />  <a href="javascript:void(0);">View My Profile</a>
           </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">
          <div class="logo-1"><img src="../assets/images/logo-1.png" /></div><!-- logo 1 -->
           <div class="vs">vs</div><!-- vs -->
            <div class="logo-2"><img src="../assets/images/logo-2.png" /></div><!-- logo 2 -->
          </div><!-- compare -->
         
              <div class="comment-box author-one">
          <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">
           <img src="../assets/images/comment-user.svg" />  <a href="javascript:void(0);">View My Profile</a>
           </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">
            <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>
          </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: "TwoAuthor",

  data() {
    return {};
  },
  mounted() {},
  methods: {
    goToLogin() {
      this.$router.push("/login");
    },
    goToSignUp() {
      this.$router.push("/");
    },
    
  },
};
</script>