summaryrefslogtreecommitdiff
path: root/src/views/PageNotFound/PageNotFound.vue
blob: 91341dbb744f71437f0f3d8d1f8b582c1531f1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <b-container fluid="xl">
    <page-title :description="$t('pagePageNotFound.description')" />
  </b-container>
</template>
<script>
import PageTitle from '@/components/Global/PageTitle';
export default {
  name: 'PageNotFound',
  components: { PageTitle },
};
</script>