aboutsummaryrefslogtreecommitdiff
path: root/components/ui/home/HomeHero.vue
blob: 0ddcd4c005c7ad9e9dcc73f091ae1660120e9b97 (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
<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"
      >
      <br>

      <div style="text-align: center;">
        <small class="wow fadeInUp" data-wow-delay="1.2s">last updated: {{ updated }}</small>
      </div>
    </div>
  </div>
</template>

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