first commit

This commit is contained in:
2025-12-21 08:03:18 +07:00
commit 7c746f776a
300 changed files with 24836 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<div
class="rounded-2xl border border-gray-200 bg-white px-5 pb-5 pt-5 dark:border-gray-800 dark:bg-white/[0.03] sm:px-6 sm:pt-6">
<div class="flex flex-col gap-5 mb-6 sm:flex-row sm:justify-between">
<div class="w-full">
<h3 class="text-lg font-semibold text-gray-800 dark:text-white/90">
Statistics
</h3>
<p class="mt-1 text-gray-500 text-theme-sm dark:text-gray-400">
Target youve set for each month
</p>
</div>
<div class="flex items-start w-full gap-3 sm:justify-end">
<div x-data="{ selected: 'overview' }"
class="inline-flex w-fit items-center gap-0.5 rounded-lg bg-gray-100 p-0.5 dark:bg-gray-900">
@php
$options = [
['value' => 'overview', 'label' => 'Overview'],
['value' => 'sales', 'label' => 'Sales'],
['value' => 'revenue', 'label' => 'Revenue'],
];
@endphp
@foreach ($options as $option)
<button @click="selected = '{{ $option['value'] }}'"
:class="selected === '{{ $option['value'] }}' ? 'shadow-theme-xs text-gray-900 dark:text-white bg-white dark:bg-gray-800' :
'text-gray-500 dark:text-gray-400'"
class="px-3 py-2 font-medium rounded-md text-theme-sm hover:text-gray-900 dark:hover:text-white">
{{ $option['label'] }}
</button>
@endforeach
</div>
</div>
</div>
<div class="max-w-full overflow-x-auto custom-scrollbar">
<div id="chartThree" class="-ml-4 min-w-[700px] pl-2 xl:min-w-full"></div>
</div>
</div>