feat: add app shell with sidebar navigation, routing, and placeholder pages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 14:41:59 +05:30
parent dc68577477
commit 2984545dde
10 changed files with 260 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
import { TopBar } from "@/components/layout/top-bar";
export const LeadWorkspacePage = () => {
return (
<div className="flex flex-1 flex-col">
<TopBar title="Lead Workspace" subtitle="Ramaiah Memorial Hospital · Last 24 hours" />
<div className="flex flex-1 items-center justify-center p-8">
<p className="text-tertiary">Lead Workspace coming soon</p>
</div>
</div>
);
};