summaryrefslogtreecommitdiff
path: root/src/views/_ibs/PageNotFound/PageNotFound.vue
blob: 287f5074718270fd10850c3f20a7de32abda3169 (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/_ibs/Global/PageTitle';
export default {
  name: 'PageNotFound',
  components: { PageTitle },
};
</script>