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