feat: course admin dashboard

This commit is contained in:
Jannat Patel
2026-01-23 18:26:09 +05:30
parent 412bdeb085
commit 0e8b232ef1
21 changed files with 971 additions and 2147 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div class="border rounded-md p-3 space-y-2">
<div class="text-ink-gray-5">
{{ __(title) }}
</div>
<div class="flex items-center space-x-2">
<slot name="prefix" />
<div class="font-semibold text-2xl">
{{ value }}
</div>
<slot name="suffix" />
</div>
</div>
</template>
<script setup lang="ts">
const props = defineProps<{
title: string
value: number | string
}>()
</script>