aboutsummaryrefslogtreecommitdiff
path: root/components/ui/contacts/ContactsHero.vue
blob: 7167b5c3ebc0f6a58e2940ad7183594250b7faf2 (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
<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">
            contacts
          </h3>

          <p class="wow fadeInUp" data-wow-delay="1.2s">
            <code>
              n/a<br>
            </code>

            {{ description }}
          </p>
        </div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'ContactsHero',
  props: {
    description: {
      type: String,
      default: () => {
        return 'a few ways to get a hold of me'
      }
    }
  }
}
</script>