7 lines
321 B
Vue
7 lines
321 B
Vue
<template>
|
|
<div class="flex flex-col items-center justify-center h-screen">
|
|
<h1 class="text-4xl font-bold text-gray-800">404</h1>
|
|
<p class="mt-4 text-lg text-gray-600">Page not found</p>
|
|
<router-link to="/" class="mt-6 text-blue-500 hover:underline">Go back home</router-link>
|
|
</div>
|
|
</template> |