2019-03-18 08:53:00 -03:00
|
|
|
<template>
|
2019-09-28 08:30:44 -03:00
|
|
|
<div>
|
2019-03-18 08:53:00 -03:00
|
|
|
<h1 class="mb-8 font-bold text-3xl">Dashboard</h1>
|
2020-07-29 10:49:48 -03:00
|
|
|
<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>
|
2019-09-28 08:30:44 -03:00
|
|
|
</div>
|
2019-03-18 08:53:00 -03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Layout from '@/Shared/Layout'
|
|
|
|
|
|
|
|
export default {
|
2019-09-28 08:30:44 -03:00
|
|
|
metaInfo: { title: 'Dashboard' },
|
|
|
|
layout: Layout,
|
2019-03-18 08:53:00 -03:00
|
|
|
}
|
|
|
|
</script>
|