just brought

This commit is contained in:
2025-05-21 15:59:46 +05:30
parent b46824ff98
commit f30d010d59
8 changed files with 1185 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
import { Link, useLocation } from "wouter";
import { LayoutDashboard, Users, Calendar, FileText, Settings } from "lucide-react";
import { LayoutDashboard, Users, Calendar, Settings, FileCheck, ClipboardCheck, CreditCard } from "lucide-react";
import { cn } from "@/lib/utils";
interface SidebarProps {
@@ -26,6 +27,21 @@ export function Sidebar({ isMobileOpen, setIsMobileOpen }: SidebarProps) {
path: "/patients",
icon: <Users className="h-5 w-5" />,
},
{
name: "Claims",
path: "/claims",
icon: <FileCheck className="h-5 w-5" />,
},
{
name: "Pre-authorizations",
path: "/preauthorizations",
icon: <ClipboardCheck className="h-5 w-5" />,
},
{
name: "Payments",
path: "/payments",
icon: <CreditCard className="h-5 w-5" />,
},
{
name: "Settings",
path: "/settings",