WIP of user avatar work

Switching from laptop
This commit is contained in:
Eli Ribble 2026-03-29 17:09:01 -07:00
parent ad90f9c95e
commit 6f9a511874
No known key found for this signature in database
9 changed files with 68 additions and 2 deletions

10
ts/components/Card.vue Normal file
View file

@ -0,0 +1,10 @@
<template>
<div class="card mb-4">
<div class="card-header text-white">
<slot name="header"></slot>
</div>
<div class="card-body">
<slot name="body"></slot>
</div>
</div>
</template>