15 lines
422 B
Vue
15 lines
422 B
Vue
<script setup>
|
|
import { Head } from '@inertiajs/vue3';
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Welcome" />
|
|
|
|
<div class="min-h-screen flex items-center justify-center bg-surface">
|
|
<div class="text-center">
|
|
<h1 class="text-4xl font-bold text-white mb-4">Go / No Go</h1>
|
|
<p class="text-gray-400">Baker Tilly International Questionnaire Application</p>
|
|
</div>
|
|
</div>
|
|
</template>
|