aboutsummaryrefslogtreecommitdiff
path: root/components/ui/home/HomeHero.vue
blob: 52c2163ed68f5049e158fb800f844b917ab3ae0a (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
<template>
  <div class="hero">
    <div class="header">
      <!-- <img
        class="wow fadeInUp"
        data-wow-delay="1s"
        src="../../../assets/images/underconstruction-flash.gif"
        alt="1990s era under constriction gif"
      > -->
      <h1>Volatile</h1>
      <br>

      <div style="text-align: center;">
        <small class="wow fadeInUp" data-wow-delay="1.2s">Segmentation fault</small>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'Hero',
  props: {
    updated: {
      type: String,
      default: () => {
        return '1991. 01. 11.'
      }
    }
  }
}
</script>