Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
<script setup>
const statistics = [
{
title: 'Sales',
stats: '230k',
icon: 'tabler-chart-pie-2',
color: 'primary',
},
{
title: 'Customers',
stats: '8.549k',
icon: 'tabler-users',
color: 'info',
},
{
title: 'Products',
stats: '1.423k',
icon: 'tabler-shopping-cart',
color: 'error',
},
{
title: 'Revenue',
stats: '$9745',
icon: 'tabler-currency-dollar',
color: 'success',
},
]
</script>
<template>
<VCard title="Statistics">
<template #append>
<span class="text-sm text-disabled">Updated 1 month ago</span>
</template>
<VCardText>
<VRow>
<VCol
v-for="item in statistics"
:key="item.title"
cols="6"
md="3"
>
<div class="d-flex align-center gap-4 mt-md-9 mt-0">
<VAvatar
:color="item.color"
variant="tonal"
rounded
size="40"
>
<VIcon :icon="item.icon" />
</VAvatar>
<div class="d-flex flex-column">
<h5 class="text-h5">
{{ item.stats }}
</h5>
<div class="text-sm">
{{ item.title }}
</div>
</div>
</div>
</VCol>
</VRow>
</VCardText>
</VCard>
</template>