✨ Basic sticker & pack overview [skip ci]
This commit is contained in:
24
pages/creator/index.vue
Normal file
24
pages/creator/index.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<v-container fluid class="h-[calc(100vh-80px)] flex flex-col justify-center items-center text-center">
|
||||
<v-icon icon="mdi-brush" size="64" />
|
||||
<div class="text-2xl">Hello, creator!</div>
|
||||
<div class="max-w-[320px]">Switch page using navigator above to get start creating contents on Solar Network.</div>
|
||||
|
||||
<div class="text-xs font-mono text-grey mt-5">
|
||||
@{{ auth.userinfo?.name }} · {{ auth.userinfo?.id.toString().padStart(8, "0") }}
|
||||
</div>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
definePageMeta({
|
||||
layout: "creator-hub",
|
||||
middleware: ["auth"],
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: "Landing",
|
||||
})
|
||||
|
||||
const auth = useUserinfo()
|
||||
</script>
|
Reference in New Issue
Block a user