mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 12:03:09 +02:00
22 lines
502 B
Vue
22 lines
502 B
Vue
<template>
|
|
<div class="ipledcug">
|
|
<div class="_fullinfo">
|
|
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
|
|
<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: 'ti ti-alert-triangle',
|
|
});
|
|
</script>
|