2
0
Fork 0
inspin.io/pages/dashboard.vue

25 lines
424 B
Vue
Raw Normal View History

2024-08-15 12:28:47 +00:00
<script setup>
useHead({
title: 'Inspin Digital | Dashboard',
})
definePageMeta({
middleware: ["auth"]
})
const user = useDirectusUser()
</script>
<template>
<div class="dashboard center">
<div class="hero">
<h1>Welcome {{ user.first_name }},</h1>
<p>Here you will find company resources and project updates.</p>
</div>
<div class="panels">
</div>
</div>
</template>