iceshrimp-legacy/packages/client/src/pages/not-found.vue
2023-04-07 17:01:42 -07:00

27 lines
538 B
Vue

<template>
<div class="ipledcug">
<div class="_fullinfo">
<img
src="/static-assets/badges/not-found.png"
class="_ghost"
alt="Not found"
/>
<div>{{ i18n.ts.notFoundDescription }}</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.notFound,
icon: "ph-warning ph-bold ph-lg",
});
</script>