<template>
  <v-card class="mx-auto center-page">
    <v-card-title class="title">
      It seems like your subscription has (temporarily) ended.
    </v-card-title>
    <v-card-text>
      If you've been validating feedback or resolving conflicts those subscriptions might become active again.<br/>
      If that happens they'll become clickable in the sidebar.
    </v-card-text>
    <v-card-actions class="text-xs-center">
      <v-btn to="/home">
        Overview
      </v-btn>
      <v-btn to="/feedback">
        Feedback History
      </v-btn>
    </v-card-actions>
  </v-card>
</template>

<script>
  export default {
    name: 'subscription-ended'
  }
</script>

<style scoped>
  .center-page {
    width: fit-content;
    top: 30vh;
  }
</style>