aboutsummaryrefslogtreecommitdiff
path: root/layouts/error.vue
blob: 88f0d7985827f157097b3bf3025ea2c2741daead (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
<template>
  <div class="hero">
    <div class="header">
      <img
        class="wow fadeInUp"
        data-wow-delay="1s"
        src="../assets/images/nosmovimos.gif"
        alt="lost gif"
      >
      <br>

      <div style="text-align: center">
        <small class="wow fadeInUp" data-wow-delay="1.2s">hmm, you seem to be lost...</small>
        <br><br>

        <a href="/">
          <img
            class="wow fadeInUp"
            data-wow-delay="1s"
            src="../assets/images/home-spin.gif"
            alt="home gif"
          >
        </a>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'error.vue',
  head: {
    title: '404 | Volatile'
  }
}
</script>