@@ -49,7 +50,11 @@ const UserSettingModal = () => {
-
+ {currentTab === "Профиль" ? (
+
+ ) : (
+
+ )}
);
};
diff --git a/src/components/UserSettingNotification/UserSettingNotification.tsx b/src/components/UserSettingNotification/UserSettingNotification.tsx
new file mode 100644
index 0000000..7db7aea
--- /dev/null
+++ b/src/components/UserSettingNotification/UserSettingNotification.tsx
@@ -0,0 +1,85 @@
+const UserSettingNotification = () => {
+ return (
+
+
+
+ Уведомления в браузере
+
+
+
+
+
+
+
+
+ Уведомления по email
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default UserSettingNotification;
diff --git a/src/icons/Company/Company.tsx b/src/icons/Company/Company.tsx
new file mode 100644
index 0000000..1bc0948
--- /dev/null
+++ b/src/icons/Company/Company.tsx
@@ -0,0 +1,18 @@
+const Company = () => {
+ return (
+
+ );
+};
+
+export default Company;
diff --git a/src/icons/CrossIcon/CrossIcon.tsx b/src/icons/CrossIcon/CrossIcon.tsx
index ff9b4a9..8a5cc23 100644
--- a/src/icons/CrossIcon/CrossIcon.tsx
+++ b/src/icons/CrossIcon/CrossIcon.tsx
@@ -1,8 +1,15 @@
const CrossIcon = () => {
return (
-
)
+
+ );
};
export default CrossIcon;
diff --git a/src/icons/CrossIcon/test.json b/src/icons/CrossIcon/test.json
new file mode 100644
index 0000000..c0b4989
--- /dev/null
+++ b/src/icons/CrossIcon/test.json
@@ -0,0 +1,16 @@
+{
+ "test": {
+ "text": "test",
+ "text3": "test",
+ "text2": "test",
+ "text5": "test",
+ "text6": "test",
+ "text7": "test",
+ "text8": "test",
+ "text9": "test",
+ "text10": "test",
+ "text11": "test",
+ "text12": "test"
+ },
+ "test2": { "test1": "sssssssssssssssssssssssssssss" }
+}
diff --git a/src/icons/Exit/Exit.tsx b/src/icons/Exit/Exit.tsx
new file mode 100644
index 0000000..a2b2ec0
--- /dev/null
+++ b/src/icons/Exit/Exit.tsx
@@ -0,0 +1,20 @@
+const Exit = () => {
+ return (
+
+ );
+};
+
+export default Exit;
diff --git a/src/icons/Notification/Notification.tsx b/src/icons/Notification/Notification.tsx
new file mode 100644
index 0000000..a46a40e
--- /dev/null
+++ b/src/icons/Notification/Notification.tsx
@@ -0,0 +1,14 @@
+const Notification = () => {
+ return (
+
+ );
+};
+
+export default Notification;
diff --git a/src/icons/Setting/Setting.tsx b/src/icons/Setting/Setting.tsx
new file mode 100644
index 0000000..6c02178
--- /dev/null
+++ b/src/icons/Setting/Setting.tsx
@@ -0,0 +1,18 @@
+const Setting = () => {
+ return (
+
+ );
+};
+
+export default Setting;
diff --git a/src/index.css b/src/index.css
index e14d34e..de961fa 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,8 +1,11 @@
+@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
+
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
+ font-family: "Inter", sans-serif;
@apply bg-[#ccc];
}
diff --git a/src/types/companyEmployee.ts b/src/types/companyEmployee.ts
index 3ae1648..ab07dbd 100644
--- a/src/types/companyEmployee.ts
+++ b/src/types/companyEmployee.ts
@@ -1,6 +1,6 @@
interface ICompanyEmployee {
image: string;
- status: "online" | "offline" | "at demonstration";
+ status: "online" | "offline" | "atDemo";
name: string;
id: string;
}