53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2024-2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
|
|
{
|
|
'name': 'Fusion Website Theme',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Website/Theme',
|
|
'summary': 'Custom website theme for Westin Healthcare - Medical Equipment Supplier',
|
|
'description': """
|
|
Fusion Website Theme
|
|
====================
|
|
|
|
A clean, functional website theme designed for Westin Healthcare.
|
|
|
|
Features:
|
|
---------
|
|
• Custom header with top announcement bar, contact info, and navigation
|
|
• Product category navigation menu
|
|
• Homepage with hero section, product categories, about section, and funding info
|
|
• Custom footer with contact details, business hours, and social links
|
|
• Brand colors matching Westin Healthcare identity
|
|
• Fully editable via Odoo website builder
|
|
|
|
Copyright © 2024-2026 Nexa Systems Inc. All rights reserved.
|
|
""",
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'maintainer': 'Nexa Systems Inc.',
|
|
'support': 'support@nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'depends': [
|
|
'website',
|
|
'website_sale',
|
|
],
|
|
'data': [
|
|
'views/templates.xml',
|
|
'views/homepage.xml',
|
|
'views/snippets.xml',
|
|
'data/website_data.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'fusion_website_theme/static/src/scss/theme.scss',
|
|
'fusion_website_theme/static/src/js/header.js',
|
|
],
|
|
},
|
|
'images': [],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
}
|