feat: health checkup page

This commit is contained in:
Kailasdevdas
2026-05-15 17:58:25 +05:30
parent 9bc0bf406a
commit 8d60afdc49
11 changed files with 1795 additions and 5 deletions
+6 -1
View File
@@ -15,6 +15,10 @@ export default function Sidebar() {
name: "Doctor",
path: "/doctor",
},
{
name: "Health Check",
path: "/health-check",
},
{
name: "Appointments",
path: "/appointment",
@@ -65,7 +69,8 @@ export default function Sidebar() {
<Link key={item.path} to={item.path}>
<Button
variant={active ? "secondary" : "ghost"}
className="w-full justify-start">
className="w-full justify-start"
>
{item.name}
</Button>
</Link>