feat: initialize template shell and basic components

This commit is contained in:
2026-05-30 01:09:14 +05:00
commit f42a5f05b2
55 changed files with 13107 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{% if developers.is_empty() %}
<div class="px-3 py-4 text-xs text-muted-foreground text-center">No developers found matching this query</div>
{% else %}
<div class="max-h-60 overflow-y-auto space-y-0.5">
{% for dev in developers %}
<div tabindex="0"
data-id="{{ dev.id.unwrap().to_hex() }}"
data-name="{{ dev.name }}"
class="combobox-item flex items-center justify-between w-full h-9 px-2.5 rounded-lg text-xs hover:bg-accent hover:text-accent-foreground text-slate-200 cursor-pointer select-none focus:bg-accent focus:text-accent-foreground focus:outline-none transition-colors group">
<span class="font-medium text-slate-200 group-hover:text-accent-foreground">{{ dev.name }}</span>
<span class="text-[10px] text-muted-foreground/70 group-hover:text-accent-foreground/70">Select</span>
</div>
{% endfor %}
</div>
{% endif %}