diff --git a/theme_3d_systems/__manifest__.py b/theme_3d_systems/__manifest__.py new file mode 100644 index 0000000..d1a237a --- /dev/null +++ b/theme_3d_systems/__manifest__.py @@ -0,0 +1,87 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'Theme 3D Systems', + 'summary': 'Futuristic 3D Website Theme for Web Systems, Odoo ERP Solutions & Software Engineering Companies', + 'description': """ +Theme 3D Systems +================ +A modern, high-performance, enterprise 3D QWeb website theme built for Odoo 19. + +Key Features: +------------- +* Native QWeb architecture with full Odoo Website Builder drag & drop compatibility. +* High-performance Three.js 3D WebGL scenes with progressive enhancement and fallbacks. +* Interactive 3D Hero, System Architecture Flow, and Service Card Tilt widgets. +* Connected Odoo ERP Module Ecosystem Visualizer. +* 100% editable content via standard oe_structure blocks. +* Comprehensive SCSS Design System with cyber-enterprise dark & light glassmorphic aesthetics. +* Native Odoo CRM Contact Form & Lead integration. +* Fully responsive across Mobile, Tablet, Laptop, and 4K Ultrawide screens. + """, + 'category': 'Theme/Corporate', + 'version': '19.0.1.0.0', + 'sequence': 100, + 'author': 'Enterprise Web Systems Architecture', + 'license': 'LGPL-3', + 'depends': [ + 'website', + 'website_crm', + 'website_mass_mailing', + 'web_editor', + ], + 'data': [ + 'data/presets.xml', + 'data/menu.xml', + 'data/pages.xml', + 'views/layout.xml', + 'views/header.xml', + 'views/footer.xml', + 'views/snippets/snippets.xml', + 'views/snippets/options.xml', + 'views/snippets/s_3d_hero.xml', + 'views/snippets/s_system_architecture.xml', + 'views/snippets/s_floating_cards.xml', + 'views/snippets/s_odoo_modules_grid.xml', + 'views/snippets/s_portfolio_showcase.xml', + 'views/snippets/s_stats_matrix.xml', + 'views/snippets/s_tech_stack.xml', + 'views/snippets/s_testimonials_3d.xml', + 'views/snippets/s_cta_glow.xml', + 'views/pages/page_home.xml', + 'views/pages/page_services.xml', + 'views/pages/page_odoo_solutions.xml', + 'views/pages/page_portfolio.xml', + 'views/pages/page_about.xml', + 'views/pages/page_contact.xml', + ], + 'assets': { + 'web.assets_frontend': [ + # SCSS Design System + 'theme_3d_systems/static/src/scss/_variables.scss', + 'theme_3d_systems/static/src/scss/_mixins.scss', + 'theme_3d_systems/static/src/scss/theme.scss', + 'theme_3d_systems/static/src/scss/components.scss', + 'theme_3d_systems/static/src/scss/animations.scss', + 'theme_3d_systems/static/src/scss/snippets.scss', + + # JavaScript UI Widgets + 'theme_3d_systems/static/src/js/three/three_core_loader.js', + 'theme_3d_systems/static/src/js/three/hero_network_scene.js', + 'theme_3d_systems/static/src/js/three/system_flow_scene.js', + 'theme_3d_systems/static/src/js/widgets/widget_3d_hero.js', + 'theme_3d_systems/static/src/js/widgets/widget_card_tilt.js', + 'theme_3d_systems/static/src/js/widgets/widget_system_arch.js', + 'theme_3d_systems/static/src/js/widgets/widget_stats_counter.js', + ], + 'website.assets_editor': [ + 'theme_3d_systems/static/src/js/options/snippet_3d_options.js', + ], + }, + 'images': [ + 'static/description/theme_screenshot.png', + 'static/description/theme_cover.png', + ], + 'application': False, + 'auto_install': False, + 'installable': True, +}