feat: split big file and update agents.md

This commit is contained in:
2026-06-18 23:16:20 +03:00
parent d8786937af
commit 7c2edbdb52
31 changed files with 1006 additions and 874 deletions

View File

@@ -0,0 +1,5 @@
import type { ReactNode } from "react";
export function ClinicalPanel({ children, className = "" }: { children: ReactNode; className?: string }) {
return <div className={`rounded-md border border-border bg-card shadow-[0_1px_0_rgba(24,74,68,0.05)] ${className}`}>{children}</div>;
}