bugfix: the whole theming structure overhauled. light/dark mode icon added.
This commit is contained in:
@@ -1,17 +1,15 @@
|
||||
export default function TodayPage() {
|
||||
return (
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold mb-6">
|
||||
<h1 className="text-2xl font-semibold mb-6">
|
||||
Welcome back Babak !!
|
||||
</h1>
|
||||
|
||||
<div className="grid grid-cols-4 gap-4">
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-4">
|
||||
<Card title="Today's Appointments" value="12" sub="Monday 2/5/2026" />
|
||||
<Card title="Active Patients" value="675" />
|
||||
<Card title="New Lab Case" value="5" sub="35 ↑" />
|
||||
<Card title="Today invoices" value="1200$" sub="21,300 $" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
@@ -27,10 +25,10 @@ function Card({
|
||||
sub?: string;
|
||||
}) {
|
||||
return (
|
||||
<div className="bg-white/5 border border-white/10 p-4 rounded-xl">
|
||||
<p className="text-sm text-gray-300">{title}</p>
|
||||
<p className="text-2xl font-bold mt-2">{value}</p>
|
||||
{sub && <p className="text-xs text-gray-400 mt-1">{sub}</p>}
|
||||
<div className="surface-card p-4">
|
||||
<p className="text-sm text-text-secondary">{title}</p>
|
||||
<p className="text-2xl font-semibold mt-2">{value}</p>
|
||||
{sub && <p className="text-xs text-text-muted mt-1">{sub}</p>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user