Files
go-no-go/resources/js/Pages/Landing.vue

33 lines
1.2 KiB
Vue

<script setup>
import { Head, router } from '@inertiajs/vue3'
import AppLayout from '@/Layouts/AppLayout.vue'
import AppButton from '@/Components/AppButton.vue'
defineOptions({ layout: AppLayout })
const handleContinue = () => {
router.post('/screening')
}
</script>
<template>
<Head title="Welcome" />
<div class="flex items-center justify-center py-16">
<div class="text-center max-w-2xl mx-auto px-4">
<h1 class="text-4xl font-bold text-white mb-4">Go / No Go</h1>
<p class="text-gray-400 mb-4 text-lg">
Baker Tilly International Go/No Go Checklist
</p>
<p class="text-gray-400 mb-8">
This tool helps you evaluate business opportunities through a structured assessment process.
You will first complete a short pre-screening questionnaire, followed by a detailed category-specific checklist
to determine whether to pursue (Go), decline (No Go), or escalate (Consult Leadership) an opportunity.
</p>
<AppButton size="lg" @click="handleContinue">
Continue
</AppButton>
</div>
</div>
</template>