Capital/pages/dev/index.vue

25 lines
673 B
Vue
Raw Permalink Normal View History

2024-08-25 12:58:36 +00:00
<template>
<v-container fluid class="h-[calc(100vh-80px)] flex flex-col justify-center items-center text-center">
<v-icon icon="mdi-code-tags" size="64" />
<div class="text-2xl">Hello, developer!</div>
<div class="max-w-[320px]">Switch page using navigator above to get start developing with Solar Network.</div>
<div class="text-xs font-mono text-grey mt-5">
@{{ auth.userinfo?.name }} · {{ auth.userinfo?.id.toString().padStart(8, "0") }}
2024-08-25 12:58:36 +00:00
</div>
</v-container>
</template>
<script setup lang="ts">
definePageMeta({
layout: "dev-portal",
middleware: ["auth"],
2024-08-25 12:58:36 +00:00
})
useHead({
title: "Landing",
})
const auth = useUserinfo()
</script>