Polarcraft/web/pages/index.vue

14 lines
311 B
Vue
Raw Normal View History

2023-04-23 10:15:25 +02:00
<template>
2023-04-25 15:51:20 +02:00
<div class="w-full h-full text-primary flex justify-center items-center flex-col">
<h1 class="text-5xl font-bold text-center mb-10">Welkom, {{ user.discord.username }}</h1>
2023-04-23 10:15:25 +02:00
</div>
</template>
2023-04-23 17:16:53 +02:00
<script setup>
definePageMeta({
middleware: ["auth"]
})
const user = useState('user')
</script>