Project structure changes ad new files added in dashboard folders
This commit is contained in:
16
components/auth/statCard.tsx
Normal file
16
components/auth/statCard.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user