pingcrm/resources/js/Pages/Dashboard/Index.vue

16 lines
450 B
Vue

<template>
<div>
<h1 class="mb-8 font-bold text-3xl">Dashboard</h1>
<p class="mb-8 leading-normal">Hey there! Welcome to Ping CRM, a demo app designed to help illustrate how <a class="text-indigo-500 underline hover:text-orange-600" href="https://inertiajs.com">Inertia.js</a> works.</p>
</div>
</template>
<script>
import Layout from '@/Shared/Layout'
export default {
metaInfo: { title: 'Dashboard' },
layout: Layout,
}
</script>