You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
693 B
26 lines
693 B
3 months ago
|
<template>
|
||
|
<div
|
||
|
class="flex flex-col items-center justify-center min-h-screen bg-black text-white py-20 px-4"
|
||
|
>
|
||
|
<h1 class="text-5xl md:text-6xl font-bold mb-8">建设中</h1>
|
||
|
<p class="text-xl md:text-2xl mb-8">抱歉,您访问的页面正在建设中</p>
|
||
|
<NuxtLink
|
||
|
to="/"
|
||
|
class="bg-[#52AC63] hover:bg-[#3f8a4e] text-white font-bold py-2 px-6 rounded transition-colors"
|
||
|
>
|
||
|
返回首页
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
// 为404页面设置适当的SEO
|
||
|
useSeoMeta({
|
||
|
title: '产品中心 - 比特电科',
|
||
|
description: '产品中心 - 比特电科',
|
||
|
robots: 'noindex, nofollow',
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|