24 lines
519 B
Vue
24 lines
519 B
Vue
<script lang="ts" setup>
|
|
definePageMeta({
|
|
layout: "dashboard"
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer>
|
|
<div class="mt-1 mb-2 flex flex-col w-full">
|
|
<ProseH2 class="text-center m-0.5 w-full">Hey there, user!</ProseH2>
|
|
<ProseP class="text-center text-muted m-0.5">Welcome to the UI!</ProseP>
|
|
<UBadge variant="subtle" class="inline mx-auto">Something like that</UBadge>
|
|
</div>
|
|
|
|
<div class="w-full flex flex-col">
|
|
|
|
</div>
|
|
</UContainer>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
|
|
</style> |