main.view--home(style="display:flex; flex-direction:column; gap: 40px")
div.view--nav(style="display: flex; justify-content: space-between;")
header
h2 home - profile: {{ pid }}
w-drawer(v-model="openDrawer")
w-button(@click="openDrawer = true" outline="")
| Active Chats
h2 Match Queue
article(v-if="cards.length && !loading")
ProfileCardList(:profiles="cards" :pid="pid" @reload="getCards")
p(v-else) Loading...
h2 Matches
article(v-if="matches.length && !loading")
ProfileCardList(:profiles="matches" :pid="pid" @reload="getCards")
p(v-else-if="matches.length===0") No matches.
p(v-else) Loading...