11 lines
496 B
Vue
11 lines
496 B
Vue
<template>
|
|
<div class="flex flex-col items-center justify-center min-h-[60vh] text-center">
|
|
<div class="text-8xl font-bold text-gray-600 mb-4">404</div>
|
|
<h2 class="text-2xl font-semibold text-gray-300 mb-2">頁面不存在</h2>
|
|
<p class="text-gray-500 mb-8">您要尋找的頁面不存在或已被移除</p>
|
|
<router-link to="/home"
|
|
class="bg-blue-600 hover:bg-blue-500 text-white px-6 py-2 rounded-lg transition">
|
|
回到首頁
|
|
</router-link>
|
|
</div>
|
|
</template> |