fix: update not found page

This commit is contained in:
yosaphatprs 2025-11-25 17:01:47 +07:00
parent f7bffa86d5
commit 756bb6ee09

View File

@ -1,7 +1,11 @@
<template> <template>
<div> <div
<h1>404 - Page Not Found</h1> class="h-screen w-screen flex justify-center flex-col items-center bg-white text-dark text-lg"
<p>The page you are looking for does not exist.</p> >
<router-link to="/dashboard">Go back to Dashboard</router-link> <h1 class="font-bold">404 - Page Not Found</h1>
<p>Halaman tidak ditemukan.</p>
<router-link to="/dashboard"
>Kembali ke <span class="font-bold">Dashboard</span></router-link
>
</div> </div>
</template> </template>