lists-page-setup #2

Merged
tiradoe merged 3 commits from lists-page-setup into main 2026-02-24 06:32:18 +00:00
Showing only changes of commit 26291062c0 - Show all commits

View file

@ -29,14 +29,15 @@ const refreshLists = () => {
</ul> </ul>
</div> </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> <h2 class="text-2xl font-bold">Shared With You</h2>
<ul class="w-full flex flex-col gap-3"> <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> <NuxtLink to="lists/2">Bob's List</NuxtLink>
</li> </li>
</ul> </ul>
</div> </div>
-->
</div> </div>
</template> </template>