Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 21:50:26 +10:00
commit d8d4ecbe8a
142 changed files with 25234 additions and 0 deletions
@@ -0,0 +1,29 @@
<script setup lang="ts">
import Avatar from '@/components/dredge/Avatar.vue';
defineProps<{
handle: string;
role: string;
}>();
</script>
<template>
<div class="sidebar__profile">
<Avatar size="lg" />
<div>
<span class="card__handle">{{ handle }}</span>
</div>
</div>
</template>
<style scoped>
.sidebar__profile {
display: flex;
align-items: center;
gap: 0.75rem;
}
.sidebar__profile > div {
display: flex;
flex-direction: column;
}
</style>