@ -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 <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
* 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: `<static/description/index.html>`__ |
@ -0,0 +1,23 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
|
||||
|
from .hooks import init_hooks |
@ -0,0 +1,63 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
|
||||
|
{ |
||||
|
"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, |
||||
|
} |
@ -0,0 +1,7 @@ |
|||||
|
## Module <artify_backend_theme> |
||||
|
|
||||
|
#### 26.06.2024 |
||||
|
#### Version 17.0.1.0.0 |
||||
|
#### ADD |
||||
|
- Initial commit for Artify Backend Theme |
||||
|
|
@ -0,0 +1,57 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################# |
||||
|
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) |
After Width: | Height: | Size: 188 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 172 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 197 KiB |
After Width: | Height: | Size: 577 KiB |
After Width: | Height: | Size: 144 KiB |
After Width: | Height: | Size: 111 KiB |
After Width: | Height: | Size: 155 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 172 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 245 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,933 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
|
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" |
||||
|
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> |
||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> |
||||
|
<link rel="preconnect" href="https://fonts.googleapis.com"> |
||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> |
||||
|
<title>Document</title> |
||||
|
<style> |
||||
|
|
||||
|
@media screen and (max-width: 1200px) { |
||||
|
.supports-enterprise { |
||||
|
width:99% !important; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
</style> |
||||
|
</head> |
||||
|
<body class=""> |
||||
|
<div id="wrapwrap" class="loempia_themes_page o_footer_effect_enable"> |
||||
|
<main style="padding-top: 95.8px;"> |
||||
|
<div id="wrap" itemscope="" itemtype="http://schema.org/SoftwareApplication" class="js_apps auto_pop"> |
||||
|
<div class="container apps_page"> |
||||
|
<div id="module-description"> |
||||
|
<div class="container loempia_srt_container"> |
||||
|
<div class="container"> |
||||
|
<div class="oe_styling_v8"> |
||||
|
<div class="container"> |
||||
|
<div class="supports"> |
||||
|
<div class="row justify-content-between"> |
||||
|
<div class="col-4"> |
||||
|
<div class="my-3"> |
||||
|
<img src="images/Cybrosys R.png" style="width:auto !important; height:40px !important"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-6"> |
||||
|
<div class="row" style="margin-top:10px;"> |
||||
|
<div class="col"> |
||||
|
<span><b>Supports: </b></span> |
||||
|
</div> |
||||
|
<div class="text-center col" style="background-color:#714b67 !important; font-size:0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:0px !important; min-width:120px !important"> |
||||
|
Community |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row" style="margin-top:10px;"> |
||||
|
<div class="col"> |
||||
|
<span><b>Availability: </b></span> |
||||
|
</div> |
||||
|
<div class="text-center col" style="border: 1px solid #017E84; font-size:0.8rem !important; color:#017E84 !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:0px !important; min-width:120px !important"> |
||||
|
<i class="fa fa-times" style="color: red;"></i> Odoo Online |
||||
|
</div> |
||||
|
<div class="text-center col" style="font-size:0.8rem !important; color:#5B899E !important; border:1px solid #5B899E; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:0px !important; min-width:120px !important"> |
||||
|
<i class="fa fa-check" style="color: green;"></i> Odoo.sh |
||||
|
</div> |
||||
|
<div class="text-center col" style="font-size:0.8rem !important; color:#5B899E !important; border:1px solid #5B899E; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:0px !important; min-width:120px !important"> |
||||
|
<i class="fa fa-check" style="color: green;"></i> On Premise |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<hr/> |
||||
|
<div class="container"> |
||||
|
<div> |
||||
|
<img src="images/banner.jpg" alt="" width="100%"> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
|
||||
|
<!-- END OF HERO --> |
||||
|
<!-- OVERVIEW --> |
||||
|
<div class="container"> |
||||
|
<div class="row m-0 mt-5"> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center"> |
||||
|
<p class="my-1 " style="line-height: 1.8;"> |
||||
|
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. |
||||
|
</p> |
||||
|
<div class="mt-2"> |
||||
|
<div class="alert " role="alert" |
||||
|
style="width: 100%; text-align: center; background-color: #ffeca79a;font-size: 0.87rem !important;padding: 0.7rem !important;"> |
||||
|
<i class="fa fa-exclamation-triangle mr-2" |
||||
|
aria-hidden="true"></i> |
||||
|
Please make sure that you install all your apps prior to the |
||||
|
installation of this theme. |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row m-0"> |
||||
|
<div class="my-4 py-3"> |
||||
|
<h2 class="my-2">Overview</h2> |
||||
|
|
||||
|
<div style="width: 8% !important;height: 4px |
||||
|
!important;background-color: #556EE6 |
||||
|
!important;border-radius: 0px 6px 6px 0px!important; |
||||
|
margin-bottom: 0.4rem;"></div> |
||||
|
<p |
||||
|
style="line-height: 1.7 !important;font-size: 1rem;width: 90% !important;"> |
||||
|
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. |
||||
|
</p> |
||||
|
<ul class="p-0 my-3 list-unstyled" style="list-style: none!important; "> |
||||
|
<li class="mb-3"><span |
||||
|
style="font-size: 1.1rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important;"><i |
||||
|
class="fa fa-check-circle" |
||||
|
style="color: #556EE6 !important;margin-right: 0.2rem;"></i> |
||||
|
Modified Structure for All Type Views</span> |
||||
|
</li> |
||||
|
<li class="mb-3"><span |
||||
|
style="font-size: 1.1rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important;"><i |
||||
|
class="fa fa-check-circle" |
||||
|
style="color: #556EE6 !important;margin-right: 0.2rem;"></i> |
||||
|
|
||||
|
New Color Combination</span> |
||||
|
</li> |
||||
|
<li class="mb-3"><span |
||||
|
style="font-size: 1.1rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important;"><i |
||||
|
class="fa fa-check-circle" |
||||
|
style="color: #556EE6 !important;margin-right: 0.2rem;"></i> |
||||
|
New Look for All Applications</span></li> |
||||
|
<li class="mb-3"><span |
||||
|
style="font-size: 1.1rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important;"><i |
||||
|
class="fa fa-check-circle" |
||||
|
style="color: #556EE6 !important;margin-right: 0.2rem;"></i> |
||||
|
A Clean layout and New Font Style</span></li> |
||||
|
<li class="mb-3"><span |
||||
|
style="font-size: 1.1rem;font-weight: 500;max-width: 80%;color: #212529;"><i |
||||
|
class="fa fa-check-circle" |
||||
|
style="color: #556EE6 !important;margin-right: 0.2rem;"></i> |
||||
|
Sidebar with New Menu Icons</span></li> |
||||
|
</ul> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
<div class=""> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container p-0"> |
||||
|
<img src="images/hero.gif" class="img-responsive" width="100% !important" |
||||
|
height="auto !important"> |
||||
|
</div> |
||||
|
|
||||
|
<div class="container mb-5 p-0" |
||||
|
style="background-color: #f1f3fff8 !important;border-radius: 0px 0px 12px 12px;"> |
||||
|
<ul class="nav nav-tabs d-flex justify-content-around list-unstyled" |
||||
|
style="list-style:none !important; "> |
||||
|
<li class="col text-center p-1 py-2" |
||||
|
style="border-bottom: 1px solid #556EE6 !important;"><a |
||||
|
data-toggle="tab" href="#tab1" |
||||
|
style="color: #000;font-weight: 600; text-decoration: none;font-size: 1.4rem;">Features</a> |
||||
|
</li> |
||||
|
<li class="col text-center p-1 py-2" |
||||
|
style="border-bottom: 1px solid #556EE6 !important;"><a |
||||
|
data-toggle="tab" href="#tab2" |
||||
|
style="color: #000;font-weight: 600; text-decoration: none !important;font-size: 1.4rem;"> |
||||
|
|
||||
|
Screenshots</a></li> |
||||
|
</ul> |
||||
|
|
||||
|
<div class="tab-content overflow-hidden" style="overflow: hidden;"> |
||||
|
<div id="tab1" class="tab-pane fade in active show"> |
||||
|
<div class="col-mg-12 active" style="padding: 1rem 2rem;"> |
||||
|
|
||||
|
|
||||
|
<div class="row m-0 align-items-center py-4 "> |
||||
|
<div class="col-lg-6 "> |
||||
|
<span class=" mb-3" |
||||
|
style="background-color:#f3003f !important;border-radius: 2px !important;font-size:0.8rem;color:#fff !important;padding: 2px 6px;">New</span> |
||||
|
<h2 class="my-2">Fully Responsive Layout</h2> |
||||
|
<div |
||||
|
style="width: 20% !important;height: 4px !important;background-color: #556EE6 !important;border-radius: 0px 6px 6px 0px!important; margin-bottom: 0.4rem;"> |
||||
|
</div> |
||||
|
|
||||
|
<p |
||||
|
style=" font-size: 1rem;line-height: 1.7;margin-top: 0.5rem;"> |
||||
|
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.</p> |
||||
|
<ul class="p-0 d-flex gap-3 flex-wrap justify-content-between mt-4 list-unstyled" |
||||
|
style="list-style: none !important;"> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f">01</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important; "> |
||||
|
Fully responsive</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f">02</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Fly-out hamburger menu on the left</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f">03</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 80%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Fits perfectly to all screen sizes</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f;">04</span> |
||||
|
<p |
||||
|
style=" font-size: 1.2rem;font-weight: |
||||
|
500;max-width: 80% !important;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Quick access menu at the bottom in |
||||
|
discuss</p> |
||||
|
</li> |
||||
|
</ul> |
||||
|
|
||||
|
</div> |
||||
|
<div class="col-lg-6"> |
||||
|
<div> |
||||
|
<img src="images/responsive-backend-theme.png" width="80%" height="auto" |
||||
|
class="img-responsive rounded" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;"> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div |
||||
|
class="row align-items-center py-4 position-relative m-0 my-5"> |
||||
|
<div class="col-12"> |
||||
|
<h2 class="mb-2">List View</h2> |
||||
|
<div |
||||
|
style="width: 7% !important;height: 4px !important;background-color: #556EE6 !important;border-radius: 0px 6px 6px 0px!important; margin-bottom: 0.4rem !important;"> |
||||
|
</div> |
||||
|
<p |
||||
|
style=" font-size: 1rem;line-height: 1.7; margin-top: 0.5rem;"> |
||||
|
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.</p> |
||||
|
|
||||
|
<ul class="p-0 d-flex gap-3 flex-wrap mt-4 list-unstyled" |
||||
|
style="list-style: none !important;"> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f">01</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Stages are Separated in View |
||||
|
</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f">02</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
New Color Combination |
||||
|
</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f">03</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Modified Font </p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f">04</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Clean Layout</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f">05</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Buttons with New Colors</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f">06</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Full Screen View</p> |
||||
|
</li> |
||||
|
|
||||
|
|
||||
|
</ul> |
||||
|
</div> |
||||
|
<div class="col-lg-12"> |
||||
|
<img src="images/AR4.png?720ba0a" |
||||
|
width="100%" height="auto" |
||||
|
class="img-responsive position-relative" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)!important;" /> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
<div |
||||
|
class="row align-items-center py-4 position-relative m-0 my-5"> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-12"> |
||||
|
|
||||
|
<h2 class="mb-2">Kanban View</h2> |
||||
|
<div |
||||
|
style="width: 8% !important;height: 4px !important;background-color: #556EE6 !important;border-radius: 0px 6px 6px 0px!important; margin-bottom: 0.4rem;"> |
||||
|
</div> |
||||
|
<p |
||||
|
style=" font-size: 1rem;line-height: 1.7; margin-top: 0.5rem;"> |
||||
|
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.</p> |
||||
|
<ul class="p-0 d-flex gap-3 flex-wrap mt-4 list-unstyled" |
||||
|
style="list-style: none !important;"> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">01</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Stages are Separated in View |
||||
|
</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f;">02</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
New Color Combination |
||||
|
</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">03</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Modified Font </p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f;">04</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Clean Layout</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">05</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Buttons with New Colors</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color:#f3003f;">06</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 500;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Full Screen View</p> |
||||
|
</li> |
||||
|
|
||||
|
|
||||
|
</ul> |
||||
|
|
||||
|
</div> |
||||
|
<div class="col-lg-12"> |
||||
|
<img class="" src="images/AR3.png" width="100%" |
||||
|
height="auto" class="img-responsive" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;"> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
|
||||
|
<div class="col-12"> |
||||
|
<h2 class="mb-2">Form View</h2> |
||||
|
<div |
||||
|
style="width: 8% !important;height: 4px !important;background-color: #556EE6 !important;border-radius: 0px 6px 6px 0px!important; margin-bottom: 0.4rem;"> |
||||
|
</div> |
||||
|
<p |
||||
|
style=" font-size: 1rem;line-height: 1.7 !important; margin-top: 0.5rem;"> |
||||
|
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.</p> |
||||
|
|
||||
|
<ul class="p-0 d-flex gap-3 flex-wrap mt-4 list-unstyled" |
||||
|
style="list-style: none !important;"> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">01</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 400;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
Modified Form Style |
||||
|
</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">02</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 400;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
New Style for Required Field |
||||
|
</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">03</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 400;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
|
||||
|
Full Screen Form View</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">04</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 400;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
New Chatter Style Under Form View</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">05</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 400;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
|
||||
|
New Looks for Tabs</p> |
||||
|
</li> |
||||
|
<li class="w-50"> |
||||
|
<span style=" font-size: 1.3rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">06</span> |
||||
|
<p |
||||
|
style="font-size: 1.2rem;font-weight: 400;max-width: 90%;color: #212529 !important; margin-bottom: 1rem !important;"> |
||||
|
New Looks for Status Button</p> |
||||
|
</li> |
||||
|
|
||||
|
|
||||
|
</ul> |
||||
|
</div> |
||||
|
<div class="col-lg-12"> |
||||
|
|
||||
|
|
||||
|
<div |
||||
|
class="row align-items-center py-4 position-relative m-0 my-5"> |
||||
|
<img src="images/AR5.png" width="100%" height="auto" |
||||
|
class="img-responsive " style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)!important; |
||||
|
|
||||
|
"> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="tab2" class="tab-pane fade"> |
||||
|
<div class="col-mg-12 d-flex align-items-center flex-column active |
||||
|
justify-content-center" style="padding: 1rem 2rem;"> |
||||
|
|
||||
|
<div class="mb-3" style="max-width: 90%;"> |
||||
|
<div class="d-flex align-items-center gap-2 my-3"> <span |
||||
|
style="margin-right: 0.4rem !important; font-size: 1rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">01</span> |
||||
|
<p class="m-0 bold" |
||||
|
style="font-weight: 500 !important;color: #212529 !important;"> |
||||
|
Settings</p> |
||||
|
</div> |
||||
|
<img src="images/AR1.png" width="100%" height="auto" |
||||
|
class="img-responsive" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)!important;"> |
||||
|
</div> |
||||
|
<div class="mb-3" style="max-width: 90%;"> |
||||
|
<div class="d-flex align-items-center gap-2 my-3"> <span |
||||
|
style="margin-right: 0.4rem !important; font-size: 1rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">02</span> |
||||
|
<p class="m-0 bold" |
||||
|
style="font-weight: 500 !important;color: #212529 !important; "> |
||||
|
Apps</p> |
||||
|
</div> |
||||
|
<img src="images/AR2.png" width="100%" height="auto" |
||||
|
class="img-responsive"> |
||||
|
</div> |
||||
|
<div class="mb-3" style="max-width: 90%;"> |
||||
|
<div class="d-flex align-items-center gap-2 my-3"> <span |
||||
|
style="margin-right: 0.4rem !important; font-size: 1rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">03</span> |
||||
|
<p class="m-0 bold" |
||||
|
style="font-weight: 500 !important;color: #212529 !important;"> |
||||
|
Kanban view |
||||
|
</p> |
||||
|
</div> |
||||
|
<img src="images/AR3.png" width="100%" height="auto" |
||||
|
class="img-responsive" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)!important;"> |
||||
|
</div> |
||||
|
|
||||
|
<div class="mb-3" style="max-width: 90%;"> |
||||
|
<div class="d-flex align-items-center gap-2 my-3"> <span |
||||
|
style="margin-right: 0.4rem !important; font-size: 1rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">04</span> |
||||
|
<p class="m-0 bold" |
||||
|
style="font-weight: 500 !important;color: #212529 !important; "> |
||||
|
Tree view |
||||
|
</p> |
||||
|
</div> |
||||
|
<img src="images/AR4.png" width="100%" height="auto" |
||||
|
class="img-responsive" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)!important;"> |
||||
|
</div> |
||||
|
|
||||
|
<div class="mb-3" style="max-width: 90%;"> |
||||
|
<div class="d-flex align-items-center gap-2 my-3"> <span |
||||
|
style="margin-right: 0.4rem !important; font-size: 1rem; |
||||
|
font-weight: 400; |
||||
|
color: #f3003f;">05</span> |
||||
|
<p class="m-0 bold" |
||||
|
style="font-weight: 500 !important;color: #212529 !important; "> |
||||
|
Form view |
||||
|
</p> |
||||
|
</div> |
||||
|
<img src="images/AR5.png" width="100%" |
||||
|
height="auto" class="img-responsive" |
||||
|
style="box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)!important;"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div |
||||
|
class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important">Our |
||||
|
Services</p> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div class="container my-5"> |
||||
|
|
||||
|
<div class="row py-3 m-0"> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; position: relative;border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div |
||||
|
style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="images/cogs.png" alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Customization |
||||
|
</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div |
||||
|
style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="images/wrench.png" alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation |
||||
|
</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px !important; position: relative; border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/lifebuoy.png" alt="service-icon" |
||||
|
width="38px" height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Support</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; position: relative; border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/user.png" alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Hire Odoo Developer |
||||
|
</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; position: relative; border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50% !important; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/puzzle.png" alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Integration</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; position: relative;border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/update.png" alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Migration</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; position: relative;border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/consultation.png" alt="service-icon" |
||||
|
width="38px" height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Consultancy</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important;position: relative;border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50% !important; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/training.png" alt="service-icon" |
||||
|
width="38px" height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation |
||||
|
</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; position: relative;border-radius: 4px;"> |
||||
|
|
||||
|
<div |
||||
|
style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%) !important;"> |
||||
|
<div |
||||
|
style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25) !important;"> |
||||
|
<img src="images/license.png" alt="service-icon" |
||||
|
width="38px" height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo Licensing |
||||
|
Consultancy</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div |
||||
|
class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important">Our |
||||
|
Industries</p> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<div class="container"> |
||||
|
<div class="row m-0 my-5 py-4"> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209) !important; border-bottom: 1px solid rgb(209, 209, 209) !important; padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373) !important;"> |
||||
|
<img src="images/trading-black.png" width="42px" height="auto" |
||||
|
alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> |
||||
|
<p>Easily procure and sell your products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209) !important;border-bottom: 1px solid rgb(209, 209, 209) !important; padding: 30px;"> |
||||
|
<img src="images/pos-black.png" width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">POS</p> |
||||
|
<p>Easy configuration and convivial experience</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209) !important;border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373) !important"> |
||||
|
<img src="images/education-black.png" width="42px" height="auto" |
||||
|
alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Education</p> |
||||
|
<p>A platform for educational management</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-bottom: 1px solid rgb(209, 209, 209) !important; padding: 30px; "> |
||||
|
<img src="images/manufacturing-black.png" width="42px" height="auto" |
||||
|
alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Manufacturing</p> |
||||
|
<p>Plan, track and schedule your operations</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209) !important; padding: 30px;"> |
||||
|
<img src="images/ecom-black.png" width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & Website</p> |
||||
|
<p>Mobile friendly, awe-inspiring product pages</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209) !important; padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373) !important;"> |
||||
|
<img src="images/service-black.png" width="42px" height="auto" |
||||
|
alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Service Management</p> |
||||
|
<p>Keep track of services and invoice</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209) !important; padding: 30px; "> |
||||
|
<img src="images/restaurant-black.png" width="42px" height="auto" |
||||
|
alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Restaurant</p> |
||||
|
<p>Run your bar or restaurant methodically</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373) !important;"> |
||||
|
<img src="images/hotel-black.png" width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Hotel Management</p> |
||||
|
<p>An all-inclusive hotel management application</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div |
||||
|
class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important;"> |
||||
|
Support |
||||
|
</p> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
<div class="container my-5"> |
||||
|
<div class="row m-0" style="background-color: #FFFAFE;"> |
||||
|
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center" |
||||
|
style="border-right: 1px solid #D9D9D9!important;"> |
||||
|
<div style="padding: 30px;"> |
||||
|
<div class="d-flex align-items-center"> |
||||
|
<img src="images/support (1) 1.svg" alt="" width="60px" |
||||
|
style="margin-right: 12px;"> |
||||
|
<div style="padding: 0px 8px;"> |
||||
|
<span |
||||
|
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem!important;">Need |
||||
|
Help?</span> |
||||
|
<p class="m-0" style="color:#718096;">Got questions or need |
||||
|
help? Get in touch.</p> |
||||
|
<div style="font-weight: 400;"><span><img |
||||
|
src="images/support-email.svg" alt="" |
||||
|
width="18px" |
||||
|
style="filter: invert(1) !important;margin-right: 0.8rem;"></span>odoo@cybrosys.com |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> |
||||
|
<div style="padding: 30px;"> |
||||
|
<div class="d-flex align-items-center"> |
||||
|
<img src="images/whatsapp 1.svg" alt="" width="60px" |
||||
|
style="margin-right: 12px;"> |
||||
|
<div> |
||||
|
<span |
||||
|
style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> |
||||
|
<p class="m-0" style="color:#718096;">Say hi to us on |
||||
|
WhatsApp!</p> |
||||
|
<div style="font-weight: 400; font-size: 16px;"><span><img |
||||
|
src="images/phone.svg" alt="" width="14px" |
||||
|
style="filter: invert(1) !important; margin-right: 0.8rem;"></span>+91 |
||||
|
99456767686</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</main> |
||||
|
|
||||
|
</div> |
||||
|
<script name="plausible" defer="defer" src="https://download.odoo.com/js/plausi_odoo.js" |
||||
|
data-domain="odoo.com"></script> |
||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
||||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
||||
|
</body> |
||||
|
</html> |
After Width: | Height: | Size: 348 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 24 KiB |