diff --git a/artify_backend_theme/README.rst b/artify_backend_theme/README.rst
new file mode 100755
index 000000000..128b11eb1
--- /dev/null
+++ b/artify_backend_theme/README.rst
@@ -0,0 +1,44 @@
+.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg
+ :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
+ :alt: License: LGPL-3
+
+Artify Backend Theme
+====================
+* Artify Backend Theme module for Odoo 17 community editions
+
+Installation
+============
+ - www.odoo.com/documentation/17.0/administration/install.html
+ - Install our custom addon
+
+License
+-------
+General Public License, Version 3 (LGPL v3).
+(https://www.odoo.com/documentation/17.0/legal/licenses.html)
+
+Company
+-------
+* `Cybrosys Techno Solutions `__
+
+Credits
+-------
+* `Cybrosys Techno Solutions `__
+* Developer: (V17) YASSIR IRFAN , Contact: odoo@cybrosys.com
+
+Contacts
+--------
+* Mail Contact : odoo@cybrosys.com
+
+Bug Tracker
+-----------
+Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
+
+Maintainer
+==========
+This module is maintained by Cybrosys Technologies.
+
+For support and more information, please visit https://www.cybrosys.com
+
+Further information
+===================
+HTML Description: ``__
diff --git a/artify_backend_theme/__init__.py b/artify_backend_theme/__init__.py
new file mode 100644
index 000000000..b3e88964a
--- /dev/null
+++ b/artify_backend_theme/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+
+from .hooks import init_hooks
diff --git a/artify_backend_theme/__manifest__.py b/artify_backend_theme/__manifest__.py
new file mode 100644
index 000000000..0c12a9421
--- /dev/null
+++ b/artify_backend_theme/__manifest__.py
@@ -0,0 +1,63 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+
+{
+ "name": "Artify Backend Theme",
+ "description": "Minimalist and elegant backend "
+ "theme for Odoo 17, Backend Theme",
+ "summary": "Artify Backend Theme V17 is an attractive theme for backend",
+ "category": "Themes/Backend",
+ "version": "17.0.1.0.0",
+ 'author': 'Cybrosys Techno Solutions',
+ 'company': 'Cybrosys Techno Solutions',
+ 'maintainer': 'Cybrosys Techno Solutions',
+ 'website': "https://www.cybrosys.com",
+ "depends": ['base', 'web', 'mail'],
+ "data": [
+ 'views/icons.xml',
+ 'views/layout.xml',
+ ],
+ 'assets': {
+ 'web.assets_frontend': [
+ 'artify_backend_theme/static/src/scss/login.scss',
+ ],
+ 'web.assets_backend': [
+ 'artify_backend_theme/static/src/xml/styles.xml',
+ 'artify_backend_theme/static/src/xml/top_bar.xml',
+ 'artify_backend_theme/static/src/scss/variables.scss',
+ 'artify_backend_theme/static/src/scss/navigation_bar.scss',
+ 'artify_backend_theme/static/src/scss/style.scss',
+ 'artify_backend_theme/static/src/scss/sidebar.scss',
+ 'artify_backend_theme/static/src/js/NavBarArtify.js'
+ ],
+ },
+ 'images': [
+ 'static/description/banner.jpg',
+ 'static/description/theme_screenshot.jpg',
+ ],
+ 'license': 'LGPL-3',
+ 'pre_init_hook': 'init_hooks',
+ 'post_init_hook': 'init_hooks',
+ 'installable': True,
+ 'application': False,
+ 'auto_install': False,
+}
diff --git a/artify_backend_theme/doc/RELEASE_NOTES.md b/artify_backend_theme/doc/RELEASE_NOTES.md
new file mode 100644
index 000000000..bdee98f45
--- /dev/null
+++ b/artify_backend_theme/doc/RELEASE_NOTES.md
@@ -0,0 +1,7 @@
+## Module
+
+#### 26.06.2024
+#### Version 17.0.1.0.0
+#### ADD
+- Initial commit for Artify Backend Theme
+
diff --git a/artify_backend_theme/hooks.py b/artify_backend_theme/hooks.py
new file mode 100644
index 000000000..7956af7ee
--- /dev/null
+++ b/artify_backend_theme/hooks.py
@@ -0,0 +1,57 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Cybrosys Techno Solutions()
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+import base64
+from odoo import tools
+
+
+def process_menu_item(menu):
+ """
+ Process a menu item by updating its web_icon_data.
+ param:
+ menu (record): The menu item to process.
+ """
+ menu_list = [
+ 'Contacts', 'Link Tracker', 'Dashboards', 'Sales', 'Invoicing',
+ 'Inventory', 'Purchase', 'Calendar', 'Point of Sale', 'Website',
+ 'Notes', 'CRM', 'Surveys', 'Project', 'SMS Marketing',
+ 'Email Marketing', 'Repairs', 'Manufacturing', 'Timesheets',
+ 'Fleet', 'Lunch', 'Live Chat', 'Maintenance', 'Expenses', 'Time Off',
+ 'Attendances', 'Recruitment', 'Employees', 'Members', 'eLearning',
+ 'Events'
+ ]
+ if menu.name not in menu_list:
+ return
+ img_path = tools.misc.file_path(
+ f'artify_backend_theme/static/src/img/icons/{menu.name}.png')
+ with open(img_path, "rb") as img_file:
+ menu.write({'web_icon_data': base64.b64encode(img_file.read())})
+
+
+def init_hooks(env):
+ """
+ Initialize hooks by updating the web_icon_data of certain menus.
+ param:
+ env (Environment): Odoo environment.
+ """
+ menu_item = env['ir.ui.menu'].search([('parent_id', '=', False)])
+ for menu in menu_item:
+ process_menu_item(menu)
diff --git a/artify_backend_theme/static/description/assets/background.jpg b/artify_backend_theme/static/description/assets/background.jpg
new file mode 100644
index 000000000..31de31fa8
Binary files /dev/null and b/artify_backend_theme/static/description/assets/background.jpg differ
diff --git a/artify_backend_theme/static/description/assets/icons/chevron.png b/artify_backend_theme/static/description/assets/icons/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/chevron.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/cogs.png b/artify_backend_theme/static/description/assets/icons/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/cogs.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/consultation.png b/artify_backend_theme/static/description/assets/icons/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/consultation.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/ecom-black.png b/artify_backend_theme/static/description/assets/icons/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/ecom-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/education-black.png b/artify_backend_theme/static/description/assets/icons/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/education-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/hotel-black.png b/artify_backend_theme/static/description/assets/icons/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/hotel-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/license.png b/artify_backend_theme/static/description/assets/icons/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/license.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/lifebuoy.png b/artify_backend_theme/static/description/assets/icons/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/lifebuoy.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/manufacturing-black.png b/artify_backend_theme/static/description/assets/icons/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/manufacturing-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/pos-black.png b/artify_backend_theme/static/description/assets/icons/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/pos-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/puzzle.png b/artify_backend_theme/static/description/assets/icons/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/puzzle.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/restaurant-black.png b/artify_backend_theme/static/description/assets/icons/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/restaurant-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/service-black.png b/artify_backend_theme/static/description/assets/icons/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/service-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/trading-black.png b/artify_backend_theme/static/description/assets/icons/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/trading-black.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/training.png b/artify_backend_theme/static/description/assets/icons/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/training.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/update.png b/artify_backend_theme/static/description/assets/icons/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/update.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/user.png b/artify_backend_theme/static/description/assets/icons/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/user.png differ
diff --git a/artify_backend_theme/static/description/assets/icons/wrench.png b/artify_backend_theme/static/description/assets/icons/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/artify_backend_theme/static/description/assets/icons/wrench.png differ
diff --git a/artify_backend_theme/static/description/banner.jpg b/artify_backend_theme/static/description/banner.jpg
new file mode 100644
index 000000000..688065fa5
Binary files /dev/null and b/artify_backend_theme/static/description/banner.jpg differ
diff --git a/artify_backend_theme/static/description/icon.png b/artify_backend_theme/static/description/icon.png
new file mode 100644
index 000000000..efa5a557c
Binary files /dev/null and b/artify_backend_theme/static/description/icon.png differ
diff --git a/artify_backend_theme/static/description/images/1.png b/artify_backend_theme/static/description/images/1.png
new file mode 100644
index 000000000..965988570
Binary files /dev/null and b/artify_backend_theme/static/description/images/1.png differ
diff --git a/artify_backend_theme/static/description/images/AR1.png b/artify_backend_theme/static/description/images/AR1.png
new file mode 100644
index 000000000..d01e62ca7
Binary files /dev/null and b/artify_backend_theme/static/description/images/AR1.png differ
diff --git a/artify_backend_theme/static/description/images/AR2.png b/artify_backend_theme/static/description/images/AR2.png
new file mode 100644
index 000000000..304a9a447
Binary files /dev/null and b/artify_backend_theme/static/description/images/AR2.png differ
diff --git a/artify_backend_theme/static/description/images/AR3.png b/artify_backend_theme/static/description/images/AR3.png
new file mode 100644
index 000000000..29873f545
Binary files /dev/null and b/artify_backend_theme/static/description/images/AR3.png differ
diff --git a/artify_backend_theme/static/description/images/AR4.png b/artify_backend_theme/static/description/images/AR4.png
new file mode 100644
index 000000000..20d535d94
Binary files /dev/null and b/artify_backend_theme/static/description/images/AR4.png differ
diff --git a/artify_backend_theme/static/description/images/AR5.png b/artify_backend_theme/static/description/images/AR5.png
new file mode 100644
index 000000000..9a66c83f1
Binary files /dev/null and b/artify_backend_theme/static/description/images/AR5.png differ
diff --git a/artify_backend_theme/static/description/images/AR7.png b/artify_backend_theme/static/description/images/AR7.png
new file mode 100644
index 000000000..d930bd17e
Binary files /dev/null and b/artify_backend_theme/static/description/images/AR7.png differ
diff --git a/artify_backend_theme/static/description/images/Cybrosys R.png b/artify_backend_theme/static/description/images/Cybrosys R.png
new file mode 100644
index 000000000..da4058087
Binary files /dev/null and b/artify_backend_theme/static/description/images/Cybrosys R.png differ
diff --git a/artify_backend_theme/static/description/images/Poster-modal.psd b/artify_backend_theme/static/description/images/Poster-modal.psd
new file mode 100644
index 000000000..ad22908b9
Binary files /dev/null and b/artify_backend_theme/static/description/images/Poster-modal.psd differ
diff --git a/artify_backend_theme/static/description/images/banner.jpg b/artify_backend_theme/static/description/images/banner.jpg
new file mode 100644
index 000000000..688065fa5
Binary files /dev/null and b/artify_backend_theme/static/description/images/banner.jpg differ
diff --git a/artify_backend_theme/static/description/images/capture (1).png b/artify_backend_theme/static/description/images/capture (1).png
new file mode 100644
index 000000000..8824deafc
Binary files /dev/null and b/artify_backend_theme/static/description/images/capture (1).png differ
diff --git a/artify_backend_theme/static/description/images/check.png b/artify_backend_theme/static/description/images/check.png
new file mode 100644
index 000000000..c8e85f51d
Binary files /dev/null and b/artify_backend_theme/static/description/images/check.png differ
diff --git a/artify_backend_theme/static/description/images/chevron.png b/artify_backend_theme/static/description/images/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/artify_backend_theme/static/description/images/chevron.png differ
diff --git a/artify_backend_theme/static/description/images/cogs.png b/artify_backend_theme/static/description/images/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/artify_backend_theme/static/description/images/cogs.png differ
diff --git a/artify_backend_theme/static/description/images/consultation.png b/artify_backend_theme/static/description/images/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/artify_backend_theme/static/description/images/consultation.png differ
diff --git a/artify_backend_theme/static/description/images/ecom-black.png b/artify_backend_theme/static/description/images/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/artify_backend_theme/static/description/images/ecom-black.png differ
diff --git a/artify_backend_theme/static/description/images/education-black.png b/artify_backend_theme/static/description/images/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/artify_backend_theme/static/description/images/education-black.png differ
diff --git a/artify_backend_theme/static/description/images/email.svg b/artify_backend_theme/static/description/images/email.svg
new file mode 100644
index 000000000..15291cdc3
--- /dev/null
+++ b/artify_backend_theme/static/description/images/email.svg
@@ -0,0 +1,33 @@
+
diff --git a/artify_backend_theme/static/description/images/hero.gif b/artify_backend_theme/static/description/images/hero.gif
new file mode 100644
index 000000000..12f40a53d
Binary files /dev/null and b/artify_backend_theme/static/description/images/hero.gif differ
diff --git a/artify_backend_theme/static/description/images/hero.png b/artify_backend_theme/static/description/images/hero.png
new file mode 100644
index 000000000..bb01646fa
Binary files /dev/null and b/artify_backend_theme/static/description/images/hero.png differ
diff --git a/artify_backend_theme/static/description/images/hotel-black.png b/artify_backend_theme/static/description/images/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/artify_backend_theme/static/description/images/hotel-black.png differ
diff --git a/artify_backend_theme/static/description/images/icons/design.png b/artify_backend_theme/static/description/images/icons/design.png
new file mode 100644
index 000000000..674eba0ef
Binary files /dev/null and b/artify_backend_theme/static/description/images/icons/design.png differ
diff --git a/artify_backend_theme/static/description/images/icons/quality.png b/artify_backend_theme/static/description/images/icons/quality.png
new file mode 100644
index 000000000..058de1420
Binary files /dev/null and b/artify_backend_theme/static/description/images/icons/quality.png differ
diff --git a/artify_backend_theme/static/description/images/icons/responsive.png b/artify_backend_theme/static/description/images/icons/responsive.png
new file mode 100644
index 000000000..e6fe95233
Binary files /dev/null and b/artify_backend_theme/static/description/images/icons/responsive.png differ
diff --git a/artify_backend_theme/static/description/images/license.png b/artify_backend_theme/static/description/images/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/artify_backend_theme/static/description/images/license.png differ
diff --git a/artify_backend_theme/static/description/images/lifebuoy.png b/artify_backend_theme/static/description/images/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/artify_backend_theme/static/description/images/lifebuoy.png differ
diff --git a/artify_backend_theme/static/description/images/manufacturing-black.png b/artify_backend_theme/static/description/images/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/artify_backend_theme/static/description/images/manufacturing-black.png differ
diff --git a/artify_backend_theme/static/description/images/phone.svg b/artify_backend_theme/static/description/images/phone.svg
new file mode 100644
index 000000000..b7bd7f251
--- /dev/null
+++ b/artify_backend_theme/static/description/images/phone.svg
@@ -0,0 +1,3 @@
+
diff --git a/artify_backend_theme/static/description/images/photo-capture.png b/artify_backend_theme/static/description/images/photo-capture.png
new file mode 100644
index 000000000..06c111758
Binary files /dev/null and b/artify_backend_theme/static/description/images/photo-capture.png differ
diff --git a/artify_backend_theme/static/description/images/pngwing.jpg b/artify_backend_theme/static/description/images/pngwing.jpg
new file mode 100644
index 000000000..b4ff4e91d
Binary files /dev/null and b/artify_backend_theme/static/description/images/pngwing.jpg differ
diff --git a/artify_backend_theme/static/description/images/pos-black.png b/artify_backend_theme/static/description/images/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/artify_backend_theme/static/description/images/pos-black.png differ
diff --git a/artify_backend_theme/static/description/images/poster.psd b/artify_backend_theme/static/description/images/poster.psd
new file mode 100644
index 000000000..281991bda
Binary files /dev/null and b/artify_backend_theme/static/description/images/poster.psd differ
diff --git a/artify_backend_theme/static/description/images/puzzle.png b/artify_backend_theme/static/description/images/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/artify_backend_theme/static/description/images/puzzle.png differ
diff --git a/artify_backend_theme/static/description/images/responsive-backend-theme.png b/artify_backend_theme/static/description/images/responsive-backend-theme.png
new file mode 100644
index 000000000..06611d78a
Binary files /dev/null and b/artify_backend_theme/static/description/images/responsive-backend-theme.png differ
diff --git a/artify_backend_theme/static/description/images/restaurant-black.png b/artify_backend_theme/static/description/images/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/artify_backend_theme/static/description/images/restaurant-black.png differ
diff --git a/artify_backend_theme/static/description/images/service-black.png b/artify_backend_theme/static/description/images/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/artify_backend_theme/static/description/images/service-black.png differ
diff --git a/artify_backend_theme/static/description/images/star (1) 2.svg b/artify_backend_theme/static/description/images/star (1) 2.svg
new file mode 100644
index 000000000..5ae9f507a
--- /dev/null
+++ b/artify_backend_theme/static/description/images/star (1) 2.svg
@@ -0,0 +1,9 @@
+
diff --git a/artify_backend_theme/static/description/images/support (1) 1.svg b/artify_backend_theme/static/description/images/support (1) 1.svg
new file mode 100644
index 000000000..7d37a8f30
--- /dev/null
+++ b/artify_backend_theme/static/description/images/support (1) 1.svg
@@ -0,0 +1,9 @@
+
diff --git a/artify_backend_theme/static/description/images/support-email.svg b/artify_backend_theme/static/description/images/support-email.svg
new file mode 100644
index 000000000..eb70370d6
--- /dev/null
+++ b/artify_backend_theme/static/description/images/support-email.svg
@@ -0,0 +1,6 @@
+
diff --git a/artify_backend_theme/static/description/images/tick-mark.svg b/artify_backend_theme/static/description/images/tick-mark.svg
new file mode 100644
index 000000000..2dbb40187
--- /dev/null
+++ b/artify_backend_theme/static/description/images/tick-mark.svg
@@ -0,0 +1,17 @@
+
diff --git a/artify_backend_theme/static/description/images/trading-black.png b/artify_backend_theme/static/description/images/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/artify_backend_theme/static/description/images/trading-black.png differ
diff --git a/artify_backend_theme/static/description/images/training.png b/artify_backend_theme/static/description/images/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/artify_backend_theme/static/description/images/training.png differ
diff --git a/artify_backend_theme/static/description/images/update.png b/artify_backend_theme/static/description/images/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/artify_backend_theme/static/description/images/update.png differ
diff --git a/artify_backend_theme/static/description/images/user.png b/artify_backend_theme/static/description/images/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/artify_backend_theme/static/description/images/user.png differ
diff --git a/artify_backend_theme/static/description/images/v15-banner.jpg b/artify_backend_theme/static/description/images/v15-banner.jpg
new file mode 100644
index 000000000..263eccea1
Binary files /dev/null and b/artify_backend_theme/static/description/images/v15-banner.jpg differ
diff --git a/artify_backend_theme/static/description/images/whatsapp 1.svg b/artify_backend_theme/static/description/images/whatsapp 1.svg
new file mode 100644
index 000000000..0bfaf8fc6
--- /dev/null
+++ b/artify_backend_theme/static/description/images/whatsapp 1.svg
@@ -0,0 +1,9 @@
+
diff --git a/artify_backend_theme/static/description/images/whatsapp.svg b/artify_backend_theme/static/description/images/whatsapp.svg
new file mode 100644
index 000000000..b618aea1d
--- /dev/null
+++ b/artify_backend_theme/static/description/images/whatsapp.svg
@@ -0,0 +1,33 @@
+
diff --git a/artify_backend_theme/static/description/images/wrench.png b/artify_backend_theme/static/description/images/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/artify_backend_theme/static/description/images/wrench.png differ
diff --git a/artify_backend_theme/static/description/index.html b/artify_backend_theme/static/description/index.html
new file mode 100644
index 000000000..86c70c36e
--- /dev/null
+++ b/artify_backend_theme/static/description/index.html
@@ -0,0 +1,933 @@
+
+
+
+
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Supports:
+
+
+ Community
+
+
+
+
+ Availability:
+
+
+ Odoo Online
+
+
+ Odoo.sh
+
+
+ On Premise
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Artify Backend Theme V17 provides users with a fully customized interface featuring a fullscreen display.
+ This theme offers a minimalist and elegant design tailored for Odoo 17, promising to transform your previous experience into a fresh one.
+ It presents a clean layout with a revamped color scheme and font, ensuring an appealing appearance for your Odoo backend.
+ With a sidebar showcasing new app icons and the company logo, the Artify Backend Theme enhances navigation and branding.
+ Additionally, it elevates the standard Kanban, List, and Form views to a fully customized layout, providing a seamless and visually enhanced user experience.
+
+
+
+
+ Please make sure that you install all your apps prior to the
+ installation of this theme.
+
+
+
+
+
Overview
+
+
+
+ The Artify Backend Theme V17 presents an appealing option for your Odoo 17 platform,
+ enhancing your overall experience with its attractive design.
+ This minimalist and elegant theme is crafted specifically for Odoo 17,
+ offering a perfect solution for your backend needs.
+ With its clean and refined interface,
+ the Artify Backend Theme promises to elevate your interaction with Odoo,
+ providing a visually pleasing and streamlined user experience.
+
+ Now
+ take advantage of everything your dashboard
+ has to offer even on the go. Our design are now
+ fully responsive, enabling you to view and
+ manage everything from the comfort of your
+ mobile device. Everything has been designed in a
+ meticulous fashion so that every view snaps
+ itself to fit the size of the device you are
+ using, be it smartphones, tablet or any other
+ portables, our theme adjusts itself to fit the
+ screen size.
+
+
+ 01
+
+ Fully responsive
+
+
+ 02
+
+ Fly-out hamburger menu on the left
+
+
+ 03
+
+ Fits perfectly to all screen sizes
+
+
+ 04
+
+ Quick access menu at the bottom in
+ discuss
+
+
+
+
+
+
+
+
+
+
+
+
+
+
List View
+
+
+
+ Artify
+ Backend Theme V17 Gives You The Fully Modified
+ List View. This Table Design Gives You More
+ Beauty for Your Odoo Backend. It will Give You a
+ Clean Layout with the New Color Combination and
+ a Modified Font.
+
+
+
+ 01
+
+ Stages are Separated in View
+
+
+
+ 02
+
+ New Color Combination
+
+
+
+ 03
+
+ Modified Font
+
+
+ 04
+
+ Clean Layout
+
+
+ 05
+
+ Buttons with New Colors
+
+
+ 06
+
+ Full Screen View
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Kanban View
+
+
+
+ The
+ Artify Backend Theme V17 Gives You a Fully
+ Modified Kanban View and Kanban Group View. The
+ Section Wise Separated Stages give a Pleasant
+ Experience And an Extraordinary Design To Your
+ Content Tiles, Making The Tiles Look Great. It
+ will Give You a Clean Layout with the New Color
+ Combination and a Modified Font.
+
+
+ 01
+
+ Stages are Separated in View
+
+
+
+ 02
+
+ New Color Combination
+
+
+
+ 03
+
+ Modified Font
+
+
+ 04
+
+ Clean Layout
+
+
+ 05
+
+ Buttons with New Colors
+
+
+ 06
+
+ Full Screen View
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Form View
+
+
+
+ Artify Backend Theme Gives You The Fully Modified Form
+ View with a Full Screen Experience. It will Give
+ You a Clean Layout with the New Color
+ Combination and a Modified Font.