Dashboard Componeets files are added some

This commit is contained in:
2026-07-14 13:20:26 +01:00
parent ca40bd4095
commit 4c8c537f9c
13 changed files with 499 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
export function Card({ children, className = "" }: { children: React.ReactNode; className?: string }) {
return (
<div className={`bg-[#0a1526] border border-[#162942] rounded-xl p-3
shadow-xl flex flex-col justify-between ${className}`}>
{children}
</div>
);
}