Reworking the layouts to allow for the new design
This commit is contained in:
27
src/views/creators/CreatorHome.vue
Normal file
27
src/views/creators/CreatorHome.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="flex flex-row">
|
||||
|
||||
<div class="max-w-80">
|
||||
<creator-news-summary></creator-news-summary>
|
||||
</div>
|
||||
|
||||
<div class="px-4" :style="{ color: userStore.creator.colors.onBackground}">
|
||||
<h1>{{ userStore.creator.about.title }}</h1>
|
||||
<p>
|
||||
{{ userStore.creator.about.description }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import CreatorNewsSummary from "@/views/creators/CreatorNewsSummary.vue"
|
||||
import {useUserStore} from "@/stores/userStore.js";
|
||||
|
||||
const userStore = useUserStore()
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user