diff --git a/src/config/Paths.tsx b/src/config/Paths.tsx
index c9aee8a..add54a6 100644
--- a/src/config/Paths.tsx
+++ b/src/config/Paths.tsx
@@ -10,7 +10,8 @@ export const Paths = {
list: '/order/list'
},
features: {
- list: '/features/list'
+ list: '/features/list',
+ create: '/features/create'
},
home: '/home',
myOrders: '/my-orders',
diff --git a/src/pages/Features/Create.tsx b/src/pages/Features/Create.tsx
new file mode 100644
index 0000000..23d82cf
--- /dev/null
+++ b/src/pages/Features/Create.tsx
@@ -0,0 +1,66 @@
+import Button from '@/components/Button'
+import Input from '@/components/Input'
+import Select from '@/components/Select'
+import { COLORS } from '@/constants/colors'
+import { Add, AddSquare } from 'iconsax-react'
+import { type FC } from 'react'
+
+const CreateFeature: FC = () => {
+ return (
+
+
+
+
+
+ اطلاعات ویژگی
+
+
+
+
+
+
+
+
+
+ آیتم ها
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default CreateFeature
\ No newline at end of file
diff --git a/src/router/MainRouter.tsx b/src/router/MainRouter.tsx
index 922f1a6..e671bc9 100644
--- a/src/router/MainRouter.tsx
+++ b/src/router/MainRouter.tsx
@@ -8,9 +8,9 @@ import ProformaInvoice from '@/pages/invoice/ProformaInvoice'
import RequestList from '@/pages/requests/RequestList'
import ProductList from '@/pages/product/List'
import OrdersList from '@/pages/order/List'
-import FeaturesList from '@/pages/Features/List'
+import FeaturesList from '@/pages/features/List'
import CreateProduct from '@/pages/product/Create'
-
+import CreateFeature from '@/pages/features/Create'
const MainRouter: FC = () => {
return (
@@ -30,6 +30,7 @@ const MainRouter: FC = () => {
} />
} />
} />
+ } />