Update messaging on dashboard

This commit is contained in:
Jonathan Reinink 2020-07-29 09:49:48 -04:00
parent feb104b894
commit 73d294f2dc
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
<template>
<div>
<h1 class="mb-8 font-bold text-3xl">Dashboard</h1>
<p class="mb-12 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://github.com/inertiajs">Inertia.js</a> works.</p>
<div>
<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 class="mb-8 flex">
<inertia-link class="btn-indigo" href="/500">500 error</inertia-link>
<inertia-link class="btn-indigo" href="/404">404 error</inertia-link>
<inertia-link class="btn-indigo ml-1" href="/404">404 error</inertia-link>
</div>
<p class="leading-normal">👆 These links are intended to be broken to illustrate how error handling works with Inertia.js.</p>
</div>
</template>