'use client'; import Link from 'next/link'; import { useAuth } from '@/lib/hooks/useAuth'; import { Card } from '@/components/ui/common/Card'; export default function TodayPage() { const { currentOrganization } = useAuth(); const showNoSubscriptionNotice = Boolean(currentOrganization?.isOwner) && !currentOrganization?.plan; return (

Welcome back Babak !!

{showNoSubscriptionNotice && (

This organization does not have an active subscription yet.{' '} Choose a plan {' '} to start the purchase process.

)}

Today's Appointments

12

Monday 2/5/2026

Active Patients

675

New Lab Case

5

35 ↑

Today invoices

1200$

21,300 $

); }