feat : mise à jour de la structure du projet
This commit is contained in:
12
frontend/modules/core/pages/index.vue
Normal file
12
frontend/modules/core/pages/index.vue
Normal file
@@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<div>
|
||||
<h1 class="text-xl font-bold text-primary-500 sm:text-2xl">{{ $t('dashboard.title') }}</h1>
|
||||
<p class="mt-4 text-neutral-500">{{ $t('dashboard.welcome') }}</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const { t } = useI18n()
|
||||
|
||||
useHead({ title: t('dashboard.title') })
|
||||
</script>
|
||||
Reference in New Issue
Block a user