aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/404.vue
blob: 6484cb2b9ea1acf4850825addebe189f1480e9cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div class="fixed-center text-center">
    <p>
      <img
        src="~assets/sad.svg"
        style="width:30vw;max-width:150px;"
      >
    </p>
    <p class="text-faded">Sorry, nothing here...<strong>(404)</strong></p>
    <q-btn
      color="secondary"
      style="width:200px;"
      @click="$router.push('/')"
    >Go back</q-btn>
  </div>
</template>