forked from LaconicNetwork/cosmos-explorer
- modified src/layouts/components/DefaultLayout.vue
- ecosystem > not enable
- favorite
- all_blockchains
Author: Salman Wahib <hello@sxlmnwb.xyz>
Co-authored-by: liangping <18786721@qq.com>
31 lines
882 B
Vue
31 lines
882 B
Vue
<script setup lang="ts">
|
|
import misc404 from '@/assets/images/pages/404.png';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="pt-10">
|
|
<div class="text-center">
|
|
<div class="text-8xl font-semibold text-main">{{ $t('pages.title_all') }}</div>
|
|
<div class="text-xl font-bold my-2">{{ $t('pages.tag_all') }}</div>
|
|
<div class="text-base">
|
|
{{ $t('pages.description_all') }}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 👉 Image -->
|
|
<div class="misc-avatar w-full text-center">
|
|
<RouterLink to="/" class="btn no-underline btn-primary mt-4">
|
|
{{ $t('pages.btn_index') }}
|
|
</RouterLink>
|
|
<img :src="misc404" alt="Coming Soon" class="mx-auto h-[400px] mt-10" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<route lang="yaml">
|
|
meta:
|
|
layout: blank
|
|
action: read
|
|
subject: Auth
|
|
</route>
|