iceshrimp-legacy/packages/client/src/pages/not-found.vue
ThatOneCalculator 20d264227c make icons large
2022-11-06 18:49:47 -08:00

23 lines
513 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-bold ph-lg',
});
</script>