add nova
This commit is contained in:
22
nova/resources/js/views/CustomError404.vue
Normal file
22
nova/resources/js/views/CustomError404.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<ErrorLayout status="404">
|
||||
<Head title="Page Not Found" />
|
||||
<h1 class="text-[5rem] md:text-[4rem] font-normal leading-none">404</h1>
|
||||
<p class="text-2xl">{{ __('Whoops') }}…</p>
|
||||
<p class="text-lg leading-normal">
|
||||
{{
|
||||
__(
|
||||
"We're lost in space. The page you were trying to view does not exist."
|
||||
)
|
||||
}}
|
||||
</p>
|
||||
</ErrorLayout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ErrorLayout from '@/layouts/ErrorLayout'
|
||||
|
||||
export default {
|
||||
components: { ErrorLayout },
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user