22 lines
571 B
Vue
22 lines
571 B
Vue
<script setup lang="ts">
|
|
import { Head } from "@inertiajs/vue3";
|
|
import TitleDescription from "@/Components/Layout/Content/TitleDescription.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Welcome" />
|
|
|
|
<TitleDescription>
|
|
<template #title>
|
|
Bienvenue
|
|
</template>
|
|
<template #description>
|
|
DatBrowser, le navigateur automatisé par Datboi.
|
|
</template>
|
|
</TitleDescription>
|
|
<p>
|
|
Commencez par sélectionner un job à donner à Datboi en cliquant dessus
|
|
dans la liste à gauche.
|
|
</p>
|
|
</template>
|