aboutsummaryrefslogtreecommitdiff
path: root/components/ui/members/MembersHero.vue
blob: 491abe1acae85fab770ea7384176d8657ce4545c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<template>
  <div class="container">
    <div class="hero-content">
      <br><br><br><br>

      <div class="row">
        <div class="col-lg-8">
          <h3 class="wow fadeInUp" data-wow-delay="1s">
            members
          </h3>

          <!-- <img
            class="wow fadeInUp"
            data-wow-delay="1.15s"
            src="https://web.archive.org/web/20090809234237/http://www.geocities.com/lateralusspiraleyes/neo_coding_flash.gif"
            alt="neo"
          >
          <br> -->

          <p class="wow fadeInUp" data-wow-delay="1.2s">
            <code>$ cat members.txt <br></code>
            {{ description }}
          </p>
        </div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'MembersHero',
  props: {
    description: {
      type: String,
      default: () => {
        /* return 'despite working in full-stack, i not only have a mild distaste ' +
          'for front-end, but i\'m sub-par at it so don\'t expect much in that front.' */
        return null
      }
    }
  }
}
</script>