hippofish/packages/client/src/pages/not-found.vue

24 lines
486 B
Vue
Raw Normal View History

2020-02-06 15:20:59 +01:00
<template>
2023-04-08 02:01:42 +02:00
<div class="ipledcug">
<div class="_fullinfo">
<img
src="/static-assets/badges/not-found.webp"
2023-04-08 02:01:42 +02:00
class="_ghost"
alt="Not found"
/>
<div>{{ i18n.ts.notFoundDescription }}</div>
</div>
2020-07-04 11:28:31 +02:00
</div>
2020-02-06 15:20:59 +01:00
</template>
2022-01-07 08:48:51 +01:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import icon from "@/scripts/icon";
2020-02-06 15:20:59 +01:00
definePageMetadata({
title: i18n.ts.notFound,
icon: `${icon("ph-warning")}`,
2020-02-06 15:20:59 +01:00
});
</script>