+ )
+}
+
+export default List
\ No newline at end of file
diff --git a/components/panel/addDoctor/tabsHead/specialDays/index.js b/components/panel/addDoctor/tabsHead/specialDays/index.js
index d82270f..5db7c74 100644
--- a/components/panel/addDoctor/tabsHead/specialDays/index.js
+++ b/components/panel/addDoctor/tabsHead/specialDays/index.js
@@ -1,6 +1,22 @@
+import { Button } from "@mui/material"
+import Form from "./Form"
+import List from "./List"
+import ArrowLeftWhiteD from "@/components/icons/ArrowLeftWhiteD"
+
function SpecialDays() {
return (
-
+ )
+}
+
+export default Form
\ No newline at end of file
diff --git a/components/panel/addDoctor/tabsHead/turns/index.js b/components/panel/addDoctor/tabsHead/turns/index.js
index bb5d4a3..6607eb1 100644
--- a/components/panel/addDoctor/tabsHead/turns/index.js
+++ b/components/panel/addDoctor/tabsHead/turns/index.js
@@ -1,6 +1,20 @@
+import { Button } from "@mui/material"
+import Form from "./Form"
+import ArrowLeftWhiteD from "@/components/icons/ArrowLeftWhiteD"
+
function Turns() {
return (
-
+ )
+}
+
+export default List
\ No newline at end of file
diff --git a/components/panel/addDoctor/tabsHead/workingDays/index.js b/components/panel/addDoctor/tabsHead/workingDays/index.js
index 7d813b2..695e7c8 100644
--- a/components/panel/addDoctor/tabsHead/workingDays/index.js
+++ b/components/panel/addDoctor/tabsHead/workingDays/index.js
@@ -1,6 +1,11 @@
+import List from "./List"
+
function WorkingDays() {
return (
-
WorkingDays
+
+
لیست روزهای کاری
+
+
)
}
diff --git a/components/panel/addDoctor/tabsHead/workingDays/modal/ContentModal.js b/components/panel/addDoctor/tabsHead/workingDays/modal/ContentModal.js
new file mode 100644
index 0000000..539c398
--- /dev/null
+++ b/components/panel/addDoctor/tabsHead/workingDays/modal/ContentModal.js
@@ -0,0 +1,36 @@
+import CloseModalD from "@/components/icons/CloseModalD"
+import { styleDefault } from "@/mui"
+import { Box, Button, Modal } from "@mui/material"
+import Radios from "./Radios"
+import Form from "./Form"
+
+function ContentModal({ open, setOpen, handleClose }) {
+ return (
+
+
+
+
اضافه کردن روز کاری
+
+
+
+
+
+
+
+
+ )
+}
+
+export default ContentModal
\ No newline at end of file
diff --git a/components/panel/addDoctor/tabsHead/workingDays/modal/Form.js b/components/panel/addDoctor/tabsHead/workingDays/modal/Form.js
new file mode 100644
index 0000000..0624b26
--- /dev/null
+++ b/components/panel/addDoctor/tabsHead/workingDays/modal/Form.js
@@ -0,0 +1,48 @@
+import { useState } from "react";
+import ClockP from "@/components/icons/ClockP";
+import FieldIcon from "@/app/component/FieldIcon";
+import ContentText from "@/components/panel/ContentText";
+import { Button } from "@mui/material";
+
+function Form() {
+
+ const [data, setData] = useState({
+ start_time: '',
+ end_time: ''
+ });
+
+ const changeData = (value, name) => setData({ ...data, [name]: value })
+
+ return (
+