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