aboutsummaryrefslogtreecommitdiff
path: root/components/ui/interests/InterestsHero.vue
blob: 525864c5a97bb4e1a2ff56e0ee3590d2c80369b3 (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
<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">
            interests
          </h3>

          <p class="wow fadeInUp" data-wow-delay="1.2s">
            <code>
              handle <- openFile "interests_description.txt" ReadMode <br>
              contents <- hGetContents handle <br>
              putStr contents <br>
              hClose handle <br>
            </code>

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

<script>
export default {
  name: 'InterestsHero',
  props: {
    description: {
      type: String,
      default: () => {
        return 'just a few things that i think are pretty cool and am ' +
          'considering picking up sometime in the future.'
      }
    }
  }
}
</script>