+
-
-
+
{t.pagination?.page || 'Page'} {toPersianNum(currentPage)} {t.pagination?.of || 'of'} {toPersianNum(totalPages)}
-
+
+
);
};
diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx
index f8da475..0065c7a 100644
--- a/src/components/Sidebar.tsx
+++ b/src/components/Sidebar.tsx
@@ -6,7 +6,8 @@ import {
PanelLeftClose,
PanelLeftOpen,
PanelRightClose,
- PanelRightOpen
+ PanelRightOpen,
+ Briefcase,
} from 'lucide-react';
import { useTranslation } from '../hooks/useTranslation';
@@ -31,6 +32,11 @@ export const Sidebar = () => {
icon: Users,
label: t.sidebar?.clients || 'Clients'
},
+ {
+ path: '/projects',
+ icon: Briefcase,
+ label: t.sidebar?.projects || 'Projects'
+ },
];
return (
diff --git a/src/components/ui/TextAreaInput.tsx b/src/components/ui/TextAreaInput.tsx
index bae52b5..42d6da0 100644
--- a/src/components/ui/TextAreaInput.tsx
+++ b/src/components/ui/TextAreaInput.tsx
@@ -6,7 +6,7 @@ const TextAreaInput = React.forwardRef
(
({ className, ...props }, ref) => {
return (
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx
index f7da423..6a4c8b0 100644
--- a/src/components/ui/input.tsx
+++ b/src/components/ui/input.tsx
@@ -11,7 +11,7 @@ const Input = React.forwardRef(