* feat: 增加带格式的复制 * feat: 移除前端超时设定 * chore: update deps * feat: 添加权限页面 * feat: 设定页面优化 * feat: 更新 chatgpt 以支持 `gpt-3.5-turbo-0301` * chore: version 2.9.0
32 lines
894 B
Vue
32 lines
894 B
Vue
<script lang="ts" setup>
|
||
import { NButton } from 'naive-ui'
|
||
import { useRouter } from 'vue-router'
|
||
|
||
const router = useRouter()
|
||
|
||
function goHome() {
|
||
router.push('/')
|
||
}
|
||
</script>
|
||
|
||
<template>
|
||
<div class="flex h-full">
|
||
<div class="px-4 m-auto space-y-4 text-center max-[400px]">
|
||
<h1 class="text-4xl text-slate-800 dark:text-neutral-200">
|
||
Sorry, page not found!
|
||
</h1>
|
||
<p class="text-base text-slate-500 dark:text-neutral-400">
|
||
Sorry, we couldn’t find the page you’re looking for. Perhaps you’ve mistyped the URL? Be sure to check your spelling.
|
||
</p>
|
||
<div class="flex items-center justify-center text-center">
|
||
<div class="w-[300px]">
|
||
<img src="../../../icons/404.svg" alt="404">
|
||
</div>
|
||
</div>
|
||
<NButton type="primary" @click="goHome">
|
||
Go to Home
|
||
</NButton>
|
||
</div>
|
||
</div>
|
||
</template>
|