blob: be4b3c496169903e7946a53eed2f5aa1ea31a933 [file] [log] [blame]
Dixsie Wolmers11e655c2020-08-26 14:53:01 -05001<template>
2 <b-container fluid="xl">
3 <page-title :description="$t('pagePageNotFound.description')" />
4 </b-container>
5</template>
6<script>
7import PageTitle from '@/components/Global/PageTitle';
8export default {
9 name: 'PageNotFound',
10 components: { PageTitle }
11};
12</script>