Getting closer to a mobile version

This commit is contained in:
2025-02-18 18:35:32 -05:00
parent 3566201930
commit 2d0de59187
4 changed files with 42 additions and 82 deletions

View File

@@ -1,27 +1,4 @@
<template>
<div class="min-h-screen w-[1024px] bg-hSurface text-hOnSurface">
<div v-if="brandingStore.loading">
<v-progress-linear indeterminate></v-progress-linear>
</div>
<div v-else>
<div>
<banner></banner>
</div>
<div>
<router-view></router-view>
</div>
<div>
<Footer></Footer>
</div>
</div>
</div>
</template>
<script async setup>
<script async setup>
import {useBrandingStore} from "@/stores/brandingStore.js";
import {onMounted} from "vue";
import Banner from "@/views/creators/Banner.vue";
@@ -35,3 +12,20 @@ onMounted(async () => {
});
</script>
<template>
<div class="min-h-screen max-w-[1024px] bg-hSurface text-hOnSurface">
<div v-if="brandingStore.loading">
<v-progress-linear indeterminate></v-progress-linear>
</div>
<div v-else>
<banner></banner>
<router-view></router-view>
<Footer></Footer>
</div>
</div>
</template>