revamp template

This commit is contained in:
fro1991
2025-02-01 16:44:51 +07:00
parent c432df568a
commit 276a289580
1212 changed files with 112762 additions and 0 deletions

View File

@ -0,0 +1,52 @@
import { useLanguage } from '@/i18n';
import { fCurrency } from '@/utils/FormatNumber';
import { toAbsoluteUrl } from '@/utils/Assets';
interface CardDataProduct {
title: string;
total: string;
type: Array<{ label: string; value: string; total: string }>;
count: 'sum' | 'count';
}
const Card = ({ title, total, type, count }: CardDataProduct) => {
const { isRTL } = useLanguage();
return (
<div className="card h-full bg-[length:85%] bg-[length:85%] [background-position:9rem_-4rem] rtl:[background-position:-4rem_-4rem] bg-no-repeat channel-stats-bg">
<div className="card-body flex flex-col gap-4 p-5 lg:p-b-7.5 lg:pt-4">
<div className="flex justify-between">
<div className="flex flex-col w-8/12" style={{ background: '' }}>
<span className="text-sm font-normal text-gray-600 mb-5">{title}</span>
<span className="text-3xl font-semibold text-gray-900 mb-0">
{count === 'sum' ? fCurrency(total) : total}
</span>
</div>
<div className="flex flex-col w-4/12 justify-between" style={{ background: '' }}>
<img
src={toAbsoluteUrl('/media/file-types/chart.svg')}
className="dark:hidden h-5 h-8"
alt="Chart Icon"
/>
</div>
</div>
{/* <hr className="" />
<div className="">
{type.map((data: any, index: number) => (
<div key={data.label}>
<div className="flex justify-between mb-1">
<div className="w-8/12 text-sm">{data.label}</div>
<div className="w-4/12 text-sm text-end">
{count === 'sum' ? fCurrency(data.total) : data.total}{' '}
</div>
</div>
{index !== type.length - 1 && <hr className="border-dashed my-2" />}
</div>
))}
</div> */}
</div>
</div>
);
};
export { Card };