CTA / frontend /src /app /layout.tsx
TheQuantEd's picture
Initial deployment: ClinicalMatch AI v2.0 — FHIR R4 · MCP (9 tools) · A2A workflow · SHARP compliance · 100k synthetic patients · Neo4j graph · GraphRAG chatbot
59abb4f
raw
history blame contribute delete
640 Bytes
import type { Metadata } from "next";
import "./globals.css";
import Sidebar from "@/components/Sidebar";
export const metadata: Metadata = {
title: "ClinicalMatch AI — Precision Trial Recruitment",
description: "A2A-powered clinical trial matching using FHIR R4 and AI",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="h-full">
<body className="h-full flex bg-slate-50 antialiased" suppressHydrationWarning>
<Sidebar />
<main className="flex-1 overflow-auto">
{children}
</main>
</body>
</html>
);
}