Files
techzaa-frontend/src/pages/admins/components/dashboards/OverviewPage.tsx
T

27 lines
795 B
TypeScript
Raw Normal View History

2026-05-10 21:33:43 +06:00
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>
);
}