lists page now pulls real data

This commit is contained in:
Edward Tirado Jr 2026-02-24 00:30:26 -06:00
parent 629e950e60
commit 26291062c0

View file

@ -29,14 +29,15 @@ const refreshLists = () => {
</ul>
</div>
<div class="w-full flex flex-col gap-5">
<!-- <div class="w-full flex flex-col gap-5">
<h2 class="text-2xl font-bold">Shared With You</h2>
<ul class="w-full flex flex-col gap-3">
<li class="flex justify-between items-center p-4 bg-gray-700/50 rounded-lg hover:bg-gray-600/50 transition-colors">
<li v-for="list in lists.share" class="flex justify-between items-center p-4 bg-gray-700/50 rounded-lg hover:bg-gray-600/50 transition-colors">
<NuxtLink to="lists/2">Bob's List</NuxtLink>
</li>
</ul>
</div>
-->
</div>
</template>