2022-09-28 04:28:00 +00:00
|
|
|
<template>
|
|
|
|
<section>
|
|
|
|
<ScreenHeader layout="collapsed">Not Found</ScreenHeader>
|
|
|
|
|
|
|
|
<div class="main-scroll-wrap">
|
|
|
|
<ScreenEmptyState>
|
2022-12-02 16:17:37 +00:00
|
|
|
<template #icon>
|
2023-11-10 13:16:06 +00:00
|
|
|
<Icon :icon="faKiwiBird" :mask="faMap" transform="shrink-12" />
|
2022-09-28 04:28:00 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
The requested content cannot be found.
|
|
|
|
</ScreenEmptyState>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { faKiwiBird, faMap } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
|
|
|
|
import ScreenEmptyState from '@/components/ui/ScreenEmptyState.vue'
|
|
|
|
//
|
|
|
|
</script>
|