mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
22 lines
612 B
Vue
22 lines
612 B
Vue
<template>
|
|
<section>
|
|
<ScreenHeader layout="collapsed">Not Found</ScreenHeader>
|
|
|
|
<div class="main-scroll-wrap">
|
|
<ScreenEmptyState>
|
|
<template #icon>
|
|
<icon :icon="faKiwiBird" :mask="faMap" transform="shrink-12" />
|
|
</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>
|