create driver page and client page also create oll driver , client layer

This commit is contained in:
m7amedez5511
2026-06-14 16:25:56 +03:00
parent 68bfce4345
commit bcc4baf28a
35 changed files with 5551 additions and 816 deletions

View File

@@ -0,0 +1,17 @@
interface EmptyStateProps {
icon?: string;
title: string;
description?: string;
action?: React.ReactNode;
}
export function EmptyState({ icon = "📋", title, description, action }: EmptyStateProps) {
return (
<div className="flex flex-col items-center justify-center gap-3 py-16 text-center">
<span className="text-5xl" aria-hidden="true">{icon}</span>
<h3 className="text-base font-semibold text-slate-700">{title}</h3>
{description && <p className="text-sm text-slate-500 max-w-xs">{description}</p>}
{action && <div className="mt-2">{action}</div>}
</div>
);
}