2026-04-30 18:15:40 +03:30
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import Link from 'next/link';
|
|
|
|
|
import { useAuth } from '@/lib/hooks/useAuth';
|
|
|
|
|
|
2026-04-23 15:33:11 +03:30
|
|
|
export default function TodayPage() {
|
2026-04-30 18:15:40 +03:30
|
|
|
const { currentOrganization } = useAuth();
|
|
|
|
|
const showNoSubscriptionNotice =
|
|
|
|
|
Boolean(currentOrganization?.isOwner) && !currentOrganization?.plan;
|
|
|
|
|
|
2026-04-23 15:33:11 +03:30
|
|
|
return (
|
|
|
|
|
<div>
|
2026-04-29 01:22:53 +03:30
|
|
|
<h1 className="text-2xl font-semibold mb-6">
|
2026-04-23 15:33:11 +03:30
|
|
|
Welcome back Babak !!
|
|
|
|
|
</h1>
|
|
|
|
|
|
2026-04-30 18:15:40 +03:30
|
|
|
{showNoSubscriptionNotice && (
|
|
|
|
|
<div className="mb-6 rounded-[var(--radius-md)] border border-amber-500/30 bg-amber-500/10 p-4">
|
|
|
|
|
<p className="text-sm text-amber-200">
|
|
|
|
|
This organization does not have an active subscription yet.{' '}
|
|
|
|
|
<Link href="/settings/subscriptions" className="font-medium underline underline-offset-2">
|
|
|
|
|
Choose a plan
|
|
|
|
|
</Link>{' '}
|
|
|
|
|
to start the purchase process.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-04-29 01:22:53 +03:30
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-4">
|
2026-04-23 15:33:11 +03:30
|
|
|
<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>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function Card({
|
|
|
|
|
title,
|
|
|
|
|
value,
|
|
|
|
|
sub,
|
|
|
|
|
}: {
|
|
|
|
|
title: string;
|
|
|
|
|
value: string;
|
|
|
|
|
sub?: string;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
2026-04-29 01:22:53 +03:30
|
|
|
<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>}
|
2026-04-23 15:33:11 +03:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|