18 lines
447 B
Vue
18 lines
447 B
Vue
<template>
|
|
<div
|
|
class="grid h-full place-items-center px-4 py-20 text-center text-lg text-ink-gray-5"
|
|
>
|
|
<div class="space-y-2">
|
|
<div>Invalid page or not permitted to access</div>
|
|
<Button :route="{ name: 'Leads' }">
|
|
<template #prefix><LeadsIcon class="w-4" /></template>
|
|
Leads
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LeadsIcon from '@/components/Icons/LeadsIcon.vue'
|
|
</script>
|