change project part

This commit is contained in:
sanjidarimi
2026-05-24 21:50:36 +06:00
parent 92f56a42ad
commit 8805bab731
9 changed files with 35 additions and 35 deletions
@@ -0,0 +1,27 @@
export default function OverviewPage() {
return (
<div className="space-y-6">
<div>
<h1 className="text-3xl font-bold tracking-tight">Overview</h1>
<p className="text-muted-foreground">
Welcome back. Here is what's happening with your projects today.
</p>
</div>
{/* Example Content Grid */}
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-4">
{[1, 2, 3, 4].map((i) => (
<div
key={i}
className="rounded-xl border border-border bg-card p-6 shadow-sm"
>
<div className="text-sm font-medium text-muted-foreground">Stat Title</div>
<div className="text-2xl font-bold">2,45{i}</div>
</div>
))}
</div>
</div>
);
}