test build container
All checks were successful
Docker Version Check / check-docker (push) Successful in 15s
All checks were successful
Docker Version Check / check-docker (push) Successful in 15s
This commit is contained in:
7
inertia/pages/errors/not_found.vue
Normal file
7
inertia/pages/errors/not_found.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<div class="container">
|
||||
<div class="title">Page not found</div>
|
||||
|
||||
<span>This page does not exist.</span>
|
||||
</div>
|
||||
</template>
|
||||
11
inertia/pages/errors/server_error.vue
Normal file
11
inertia/pages/errors/server_error.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
defineProps<{ error: any }>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="container">
|
||||
<div class="title">Server Error</div>
|
||||
|
||||
<span>{{ error.message }}</span>
|
||||
</div>
|
||||
</template>
|
||||
10
inertia/pages/home.vue
Normal file
10
inertia/pages/home.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
import { Head } from '@inertiajs/vue3'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Head title="Homepage" />
|
||||
<div>
|
||||
J. Leroy
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user