Files
shomal-hospital-ticketing-f…/ui/layout/Sidebar.tsx
2026-05-28 10:20:11 +03:30

80 lines
3.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import {
Logout,
Notes,
PictureInPicture,
ShowChart,
} from "@mui/icons-material";
import { Button } from "@mui/material";
import Link from "next/link";
import LogoutButton from "../LogoutButton";
export default function Sidebar() {
return (
<>
<div className="bg-white rounded-2xl h-full py-4 space-y-10 flex flex-col items-start justify-center">
{/* <Link
href={"/dashboard"}
className="flex items-center text-[#2a5298] w-full justify-start gap-x-4 hover:bg-linear-to-r hover:from-[#1e3c72] hover:via-[#2a5298] hover:to-[#4facfe] hover:text-white px-4 py-4 hover:cursor-pointer transition-all duration-300
"
>
<span>
<Dashboard />
</span>
<span>داشبورد</span>
</Link> */}
<Link
href={"/tickets/create"}
className="flex items-center text-[#2a5298] w-full justify-start gap-x-4 hover:bg-linear-to-r hover:from-[#1e3c72] hover:via-[#2a5298] hover:to-[#4facfe] hover:text-white px-4 py-4 hover:cursor-pointer transition-all duration-300
"
>
<span>
<PictureInPicture />
</span>
<span> ثبت تيكت</span>
</Link>
<Link
href={"/tickets"}
className="flex items-center text-[#2a5298] w-full justify-start gap-x-4 hover:bg-linear-to-r hover:from-[#1e3c72] hover:via-[#2a5298] hover:to-[#4facfe] hover:text-white px-4 py-4 hover:cursor-pointer transition-all duration-300
"
>
<span>
<Notes />
</span>
<span>مشاهده تيكت ها</span>
</Link>
{/* <Link
href={"/departments"}
className="flex items-center text-[#2a5298] w-full justify-start gap-x-4 hover:bg-linear-to-r hover:from-[#1e3c72] hover:via-[#2a5298] hover:to-[#4facfe] hover:text-white px-4 py-4 hover:cursor-pointer transition-all duration-300
"
>
<span>
<Apartment />
</span>
<span>مديريت واحد ها</span>
</Link>
<Link
href={"/users"}
className="flex items-center text-[#2a5298] w-full justify-start gap-x-4 hover:bg-linear-to-r hover:from-[#1e3c72] hover:via-[#2a5298] hover:to-[#4facfe] hover:text-white px-4 py-4 hover:cursor-pointer transition-all duration-300
"
>
<span>
<Person />
</span>
<span>مديريت كاربران</span>
</Link> */}
<Link
href={"/reports"}
className="flex items-center text-[#2a5298] w-full justify-start gap-x-4 hover:bg-linear-to-r hover:from-[#1e3c72] hover:via-[#2a5298] hover:to-[#4facfe] hover:text-white px-4 py-4 hover:cursor-pointer transition-all duration-300
"
>
<span>
<ShowChart />
</span>
<span> گزارش گيري</span>
</Link>
<LogoutButton />
</div>
</>
);
}