30 lines
886 B
Vue
30 lines
886 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/components/ui/button'
|
|
import { useUserStore } from '@/stores/user'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const router = useRouter()
|
|
|
|
const user = useUserStore();
|
|
|
|
function goToApplication() {
|
|
router.push('/apply') // change to your form route
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="user.state == 'guest'"
|
|
class="min-h-screen flex flex-col items-center justify-center text-center bg-neutral-950 text-white px-4">
|
|
<h1 class="text-4xl font-bold mb-4">Welcome to the 17th</h1>
|
|
<p class="text-neutral-400 mb-8 max-w-md">
|
|
To join our unit, please fill out an application to continue.
|
|
</p>
|
|
<Button @click="goToApplication" class="px-6 py-3 text-lg">
|
|
Begin Application
|
|
</Button>
|
|
</div>
|
|
<div v-else>
|
|
HOMEPAGEEEEEEEEEEEEEEEEEEE
|
|
</div>
|
|
</template>
|