Project structure changes ad new files added in dashboard folders

This commit is contained in:
2026-07-23 18:32:07 +05:30
parent 1993d91319
commit 5a2ae769d8
63 changed files with 1550 additions and 190 deletions

View File

@@ -0,0 +1,16 @@
export default function Stat({
number,
label,
}: {
number: string;
label: string;
}) {
return (
<div>
<h2 className="text-3xl font-bold">{number}</h2>
<p className="mt-2 text-xs tracking-[3px] text-slate-400">
{label}
</p>
</div>
);
}