xref: /openbmc/webui-vue/src/views/PageNotFound/PageNotFound.vue (revision 4afe2f762cf7f567579bcd3b03c9023c79b535fc)
1<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>
13