jormungandr-bite/packages/client/src/pages/not-found.vue

23 lines
519 B
Vue
Raw Normal View History

2020-02-06 07:20:59 -07:00
<template>
2020-02-08 02:35:42 -07:00
<div class="ipledcug">
2020-07-04 03:28:31 -06:00
<div class="_fullinfo">
2022-06-28 20:33:32 -06:00
<img src="/static-assets/badges/not-found.jpg" class="_ghost" alt="Not found"/>
2022-07-20 07:24:26 -06:00
<div>{{ i18n.ts.notFoundDescription }}</div>
2020-07-04 03:28:31 -06:00
</div>
2020-02-06 07:20:59 -07:00
</div>
</template>
2022-01-07 00:48:51 -07:00
<script lang="ts" setup>
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
2020-02-06 07:20:59 -07:00
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.notFound,
icon: 'fas fa-exclamation-triangle',
2020-02-06 07:20:59 -07:00
});
</script>