first commit antrean operasi

This commit is contained in:
effendy-dev
2026-01-22 09:11:15 +07:00
commit 659e2f80cf
552 changed files with 51438 additions and 0 deletions

13
error.vue Normal file
View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
// Page title
</script>
<template>
<div class="d-flex justify-center align-center text-center h-100vh">
<div>
<img src="/images/backgrounds/errorimg.svg" width="500" alt="404" />
<h1 class="text-h1 pt-3">Opps!!!</h1>
<h4 class="text-h4 my-8">This page you are looking for could not be found.</h4>
<v-btn flat color="primary" class="mb-4" to="/">Go Back to Home</v-btn>
</div>
</div>
</template>