Some checks failed
Deploy with Docker Compose / deploy (push) Failing after 1s
Replace 5 separate REST calls on home page load with a single GraphQL query. Add homeData store that fetches posts, favorites, activities, spotify, and auth in one request. Convert all admin mutations and auth flows to use GraphQL. Add album images to Spotify GraphQL schema. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
265 B
Vue
12 lines
265 B
Vue
<script setup>
|
|
import Wip from "@/components/util/Wip.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<main class="items-center flex flex-col">
|
|
<div class="a4page-portrait items-center bdr-1 flex flex-col relative overflow-scroll">
|
|
<Wip />
|
|
</div>
|
|
</main>
|
|
</template>
|