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.png"
|
|
|
|
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";
|
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,
|
2023-04-08 02:01:42 +02:00
|
|
|
icon: "ph-warning ph-bold ph-lg",
|
2020-02-06 15:20:59 +01:00
|
|
|
});
|
|
|
|
</script>
|