69 lines
2.7 KiB
TypeScript
69 lines
2.7 KiB
TypeScript
import { CardPos, Cup, DocumentText, Home2, ReceiptItem, SmartCar, StarSlash, UserSquare, Wallet } from "iconsax-react";
|
|
import { SidebarInterface } from "../types";
|
|
|
|
|
|
export const sidebarItems: SidebarInterface[] | [] = [
|
|
{
|
|
name: "home",
|
|
title: "صفحه اصلی",
|
|
route: "/",
|
|
icon: <Home2 color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <Home2 color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "my-account",
|
|
title: "حساب من",
|
|
route: "/my-account",
|
|
icon: <UserSquare color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <UserSquare color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "wallet",
|
|
title: "کیف پول",
|
|
route: "/wallet",
|
|
icon: <Wallet color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <Wallet color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "management-bank-accounts",
|
|
title: "مدیریت حساب های بانکی",
|
|
route: "/management-bank-accounts",
|
|
icon: <CardPos color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <CardPos color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "installation-reports",
|
|
title: "گزارش نصب ها",
|
|
route: "/installation-reports",
|
|
icon: <SmartCar color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <SmartCar color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "transactions",
|
|
title: "تراکنش ها",
|
|
route: "/transactions",
|
|
icon: <ReceiptItem color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <ReceiptItem color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "my-score",
|
|
title: "امتیاز من",
|
|
route: "/my-score",
|
|
icon: <StarSlash color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <StarSlash color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "awards",
|
|
title: "جوایز",
|
|
route: "/awards",
|
|
icon: <Cup color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <Cup color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
{
|
|
name: "subscription-report",
|
|
title: "گزارش تمدید اشتراک اینترنتی",
|
|
route: "/subscription-report",
|
|
icon: <DocumentText color="#777577" className="size-5" variant="Bold" />,
|
|
activeIcon: <DocumentText color="#11212D" className="size-5" variant="Bold" />
|
|
},
|
|
] |