diff --git a/theme_the_chef/README.rst b/theme_the_chef/README.rst
new file mode 100644
index 000000000..2f9c60296
--- /dev/null
+++ b/theme_the_chef/README.rst
@@ -0,0 +1,47 @@
+.. 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
+
+
+Theme The Chef
+==============
+* Design Web Pages with theme the chef
+
+Installation
+============
+ - www.odoo.com/documentation/18.0/setup/install.html
+ - Install our custom addon
+
+License
+-------
+General Public License, Version 3 (LGPL v3).
+(https://www.gnu.org/licenses/lgpl-3.0-standalone.html)
+
+Company
+-------
+* `Cybrosys Techno Solutions `__
+
+Credits
+-------
+* Developers: (V18) ANFAS FAISAL K,
+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
+==========
+.. image:: https://cybrosys.com/images/logo.png
+ :target: https://cybrosys.com
+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/theme_the_chef/__init__.py b/theme_the_chef/__init__.py
new file mode 100644
index 000000000..623ebb15e
--- /dev/null
+++ b/theme_the_chef/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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 . import controllers
+from . import models
diff --git a/theme_the_chef/__manifest__.py b/theme_the_chef/__manifest__.py
new file mode 100644
index 000000000..21578558a
--- /dev/null
+++ b/theme_the_chef/__manifest__.py
@@ -0,0 +1,75 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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': 'Theme The Chef',
+ 'version': '18.0.1.0.0',
+ 'category': 'Theme/Creative',
+ 'summary': 'Theme The Chef is a popular attractive and unique '
+ 'front end theme for your restaurant website.',
+ 'description': 'Design Web Pages with Theme The Chef',
+ 'author': 'Cybrosys Techno Solutions',
+ 'company': 'Cybrosys Techno Solutions',
+ 'maintainer': 'Cybrosys Techno Solutions',
+ 'website': "https://www.cybrosys.com",
+ 'depends': ['website', 'mass_mailing', 'website_sale_wishlist'],
+ 'data': [
+ 'security/ir.model.access.csv',
+ 'data/website_bookings_data.xml',
+ 'views/website_snippet_templates.xml',
+ 'views/website_bookings_views.xml',
+ 'views/website_bookings_submit_templates.xml',
+ 'views/website_templates.xml',
+ 'views/snippets/about_templates.xml',
+ 'views/snippets/banner_templates.xml',
+ 'views/snippets/branches_templates.xml',
+ 'views/snippets/happy_templates.xml',
+ 'views/snippets/menu_templates.xml',
+ 'views/snippets/reservation_templates.xml',
+ 'views/snippets/special_templates.xml',
+ 'views/snippets/special_left_templates.xml',
+ 'views/snippets/team_templates.xml',
+ ],
+ 'assets': {
+ 'web.assets_frontend': [
+ 'theme_the_chef/static/src/css/animate.min.css',
+ 'theme_the_chef/static/src/css/owl.carousel.min.css',
+ 'theme_the_chef/static/src/css/owl.theme.default.min.css',
+ 'theme_the_chef/static/src/css/style.css',
+ 'theme_the_chef/static/src/xml/banner_tab_content.xml',
+ 'theme_the_chef/static/src/js/custom.js',
+ 'theme_the_chef/static/src/js/owl.carousel.js',
+ 'theme_the_chef/static/src/js/date_selection.js',
+ 'https://use.fontawesome.com/releases/v5.7.0/css/all.css',
+ 'https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap',
+ 'https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Satisfy&display=swap',
+ 'https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap',
+ ],
+ },
+ 'images': [
+ 'static/description/banner.jpg',
+ 'static/description/theme_screenshot.jpg',
+ ],
+ 'license': 'LGPL-3',
+ 'installable': True,
+ 'auto_install': False,
+ 'application': False,
+}
diff --git a/theme_the_chef/controllers/__init__.py b/theme_the_chef/controllers/__init__.py
new file mode 100644
index 000000000..9e92e49eb
--- /dev/null
+++ b/theme_the_chef/controllers/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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 . import theme_the_chef
diff --git a/theme_the_chef/controllers/theme_the_chef.py b/theme_the_chef/controllers/theme_the_chef.py
new file mode 100644
index 000000000..d56e496c7
--- /dev/null
+++ b/theme_the_chef/controllers/theme_the_chef.py
@@ -0,0 +1,66 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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 odoo import http
+from odoo.http import request
+
+
+class WebsiteChef(http.Controller):
+ """Getting the booking details and stored on the backend"""
+
+ @http.route('/book_now', type='http', auth="public", website=True)
+ def book_now(self, **post):
+ """To create the records to the model"""
+ time = post.get('time').split(':')
+ request.env['website.bookings'].sudo().create({
+ 'name': post.get('name'),
+ 'email': post.get('email'),
+ 'phone': post.get('phone'),
+ 'date': post.get('date'),
+ 'time': f"{time[0]}.{time[1]}",
+ 'persons': post.get('persons'),
+ 'notes': post.get('notes')
+ })
+ return request.render("theme_the_chef.website_bookings_form_success")
+
+ @http.route('/subscribe_newsletter', auth='public', type='json')
+ def subscribe_newsletter(self, **kw):
+ """ To save email to newsletter mail list"""
+ if request.env['mailing.contact'].sudo().search([
+ ("email", "=", kw.get("email")),
+ ("list_ids", "in",
+ [request.env.ref('mass_mailing.mailing_list_data').id])]):
+ return False
+ elif request.env.user._is_public():
+ visitor_sudo = (request.env['website.visitor'].sudo()
+ ._get_visitor_from_request())
+ name = visitor_sudo.display_name if visitor_sudo else \
+ "Website Visitor"
+ else:
+ name = request.env.user.partner_id.name
+ res = request.env['mailing.contact'].sudo().create({
+ "name": name,
+ "email": kw.get('email'),
+ "list_ids": [request.env.ref(
+ 'mass_mailing.mailing_list_data').id]
+ })
+ return True
+
diff --git a/theme_the_chef/data/website_bookings_data.xml b/theme_the_chef/data/website_bookings_data.xml
new file mode 100644
index 000000000..ec0c9a0b8
--- /dev/null
+++ b/theme_the_chef/data/website_bookings_data.xml
@@ -0,0 +1,13 @@
+
+
+
+
+ Website Bookings
+ website.bookings
+ BK
+ 4
+
+
+
+
+
\ No newline at end of file
diff --git a/theme_the_chef/doc/RELEASE_NOTES.md b/theme_the_chef/doc/RELEASE_NOTES.md
new file mode 100644
index 000000000..baa7f95c3
--- /dev/null
+++ b/theme_the_chef/doc/RELEASE_NOTES.md
@@ -0,0 +1,7 @@
+## Module
+
+#### 26.03.2025
+#### Version 18.0.1.0.0
+#### ADD
+
+- Initial commit for Theme The Chef
\ No newline at end of file
diff --git a/theme_the_chef/models/__init__.py b/theme_the_chef/models/__init__.py
new file mode 100644
index 000000000..a98a7983f
--- /dev/null
+++ b/theme_the_chef/models/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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 . import website_bookings
+from . import theme_utils
diff --git a/theme_the_chef/models/theme_utils.py b/theme_the_chef/models/theme_utils.py
new file mode 100644
index 000000000..7bf5b27af
--- /dev/null
+++ b/theme_the_chef/models/theme_utils.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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 odoo import models
+
+
+class ThemeUtils(models.AbstractModel):
+ """Inherit the model theme.utils for adding new header file"""
+ _inherit = 'theme.utils'
+
+ def _theme_chef_post_copy(self):
+ """For viewing default header"""
+ self.enable_view('theme_the_chef.template_header_default_inherited')
+ self.disable_view('website.template_header_default')
diff --git a/theme_the_chef/models/website_bookings.py b/theme_the_chef/models/website_bookings.py
new file mode 100644
index 000000000..b515e567f
--- /dev/null
+++ b/theme_the_chef/models/website_bookings.py
@@ -0,0 +1,53 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2025-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 odoo import api, fields, models
+
+
+class WebsiteBookings(models.Model):
+ """Model for storing the bookings details from the website"""
+ _name = 'website.bookings'
+ _description = 'Website Bookings'
+
+ booking = fields.Char(string='Booking Id', copy=False,
+ readonly=True,
+ default=lambda self: 'New',
+ help="Sequence for the booking orders", )
+ name = fields.Char(string='Name', help="Name of the reserved person")
+ email = fields.Char(string='Email', help="Email of the reserved person")
+ phone = fields.Char(string='Phone',
+ help="Contact number of the reserved person")
+ date = fields.Date(string='Date', help="Reservation date")
+ time = fields.Float(string="Time", help="Reservation time")
+ persons = fields.Integer(string='Person',
+ help="Number of persons for the reservation")
+ notes = fields.Text(string='Notes', help="Add the extra information")
+
+ @api.model_create_multi
+ def create(self, vals_list):
+ """Function for generating sequence for the records"""
+ for vals in vals_list:
+ if vals.get('booking', 'New') == 'New':
+ vals['booking'] = self.env['ir.sequence'].next_by_code(
+ 'website.bookings') or 'New'
+ return super(WebsiteBookings,self).create(vals)
+
+
diff --git a/theme_the_chef/security/ir.model.access.csv b/theme_the_chef/security/ir.model.access.csv
new file mode 100644
index 000000000..ee0743502
--- /dev/null
+++ b/theme_the_chef/security/ir.model.access.csv
@@ -0,0 +1,2 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+access_website_bookings,access.website.bookings,theme_the_chef.model_website_bookings,base.group_user,1,1,1,1
diff --git a/theme_the_chef/static/description/banner.jpg b/theme_the_chef/static/description/banner.jpg
new file mode 100644
index 000000000..eaf79ce15
Binary files /dev/null and b/theme_the_chef/static/description/banner.jpg differ
diff --git a/theme_the_chef/static/description/icon.png b/theme_the_chef/static/description/icon.png
new file mode 100644
index 000000000..48378c5b4
Binary files /dev/null and b/theme_the_chef/static/description/icon.png differ
diff --git a/theme_the_chef/static/description/img/1.jpg b/theme_the_chef/static/description/img/1.jpg
new file mode 100644
index 000000000..f7a9c0dc2
Binary files /dev/null and b/theme_the_chef/static/description/img/1.jpg differ
diff --git a/theme_the_chef/static/description/img/2.jpg b/theme_the_chef/static/description/img/2.jpg
new file mode 100644
index 000000000..82d1474d0
Binary files /dev/null and b/theme_the_chef/static/description/img/2.jpg differ
diff --git a/theme_the_chef/static/description/img/3.jpg b/theme_the_chef/static/description/img/3.jpg
new file mode 100644
index 000000000..55e8dbace
Binary files /dev/null and b/theme_the_chef/static/description/img/3.jpg differ
diff --git a/theme_the_chef/static/description/img/4.jpg b/theme_the_chef/static/description/img/4.jpg
new file mode 100644
index 000000000..9fb8dd709
Binary files /dev/null and b/theme_the_chef/static/description/img/4.jpg differ
diff --git a/theme_the_chef/static/description/img/5.jpg b/theme_the_chef/static/description/img/5.jpg
new file mode 100644
index 000000000..7a908449b
Binary files /dev/null and b/theme_the_chef/static/description/img/5.jpg differ
diff --git a/theme_the_chef/static/description/img/6.jpg b/theme_the_chef/static/description/img/6.jpg
new file mode 100644
index 000000000..1ca0a3314
Binary files /dev/null and b/theme_the_chef/static/description/img/6.jpg differ
diff --git a/theme_the_chef/static/description/img/arrows-repeat.svg b/theme_the_chef/static/description/img/arrows-repeat.svg
new file mode 100644
index 000000000..94fb8f7f9
--- /dev/null
+++ b/theme_the_chef/static/description/img/arrows-repeat.svg
@@ -0,0 +1,10 @@
+
diff --git a/theme_the_chef/static/description/img/banner-bg-1.svg b/theme_the_chef/static/description/img/banner-bg-1.svg
new file mode 100644
index 000000000..7af9bab87
--- /dev/null
+++ b/theme_the_chef/static/description/img/banner-bg-1.svg
@@ -0,0 +1,66 @@
+
diff --git a/theme_the_chef/static/description/img/banner.jpg b/theme_the_chef/static/description/img/banner.jpg
new file mode 100644
index 000000000..eaf79ce15
Binary files /dev/null and b/theme_the_chef/static/description/img/banner.jpg differ
diff --git a/theme_the_chef/static/description/img/banner.svg b/theme_the_chef/static/description/img/banner.svg
new file mode 100644
index 000000000..3d4ed7a4a
--- /dev/null
+++ b/theme_the_chef/static/description/img/banner.svg
@@ -0,0 +1,49 @@
+
diff --git a/theme_the_chef/static/description/img/check.svg b/theme_the_chef/static/description/img/check.svg
new file mode 100644
index 000000000..8bc79333d
--- /dev/null
+++ b/theme_the_chef/static/description/img/check.svg
@@ -0,0 +1,10 @@
+
diff --git a/theme_the_chef/static/description/img/contact.png b/theme_the_chef/static/description/img/contact.png
new file mode 100644
index 000000000..19839ee1e
Binary files /dev/null and b/theme_the_chef/static/description/img/contact.png differ
diff --git a/theme_the_chef/static/description/img/demo-1.jpg b/theme_the_chef/static/description/img/demo-1.jpg
new file mode 100644
index 000000000..adb315486
Binary files /dev/null and b/theme_the_chef/static/description/img/demo-1.jpg differ
diff --git a/theme_the_chef/static/description/img/demo-2.jpg b/theme_the_chef/static/description/img/demo-2.jpg
new file mode 100644
index 000000000..dde9285f4
Binary files /dev/null and b/theme_the_chef/static/description/img/demo-2.jpg differ
diff --git a/theme_the_chef/static/description/img/demo-3.jpg b/theme_the_chef/static/description/img/demo-3.jpg
new file mode 100644
index 000000000..aaf1b121c
Binary files /dev/null and b/theme_the_chef/static/description/img/demo-3.jpg differ
diff --git a/theme_the_chef/static/description/img/feature-star.svg b/theme_the_chef/static/description/img/feature-star.svg
new file mode 100644
index 000000000..a913270e8
--- /dev/null
+++ b/theme_the_chef/static/description/img/feature-star.svg
@@ -0,0 +1,13 @@
+
diff --git a/theme_the_chef/static/description/img/gear.svg b/theme_the_chef/static/description/img/gear.svg
new file mode 100644
index 000000000..ce383059d
--- /dev/null
+++ b/theme_the_chef/static/description/img/gear.svg
@@ -0,0 +1,10 @@
+
diff --git a/theme_the_chef/static/description/img/hero.png b/theme_the_chef/static/description/img/hero.png
new file mode 100644
index 000000000..d3498fd35
Binary files /dev/null and b/theme_the_chef/static/description/img/hero.png differ
diff --git a/theme_the_chef/static/description/img/hire-odoo.svg b/theme_the_chef/static/description/img/hire-odoo.svg
new file mode 100644
index 000000000..9cfec4e44
--- /dev/null
+++ b/theme_the_chef/static/description/img/hire-odoo.svg
@@ -0,0 +1,12 @@
+
diff --git a/theme_the_chef/static/description/img/laptop-screenshots.jpg b/theme_the_chef/static/description/img/laptop-screenshots.jpg
new file mode 100644
index 000000000..0e3fd4668
Binary files /dev/null and b/theme_the_chef/static/description/img/laptop-screenshots.jpg differ
diff --git a/theme_the_chef/static/description/img/life-ring-icon.svg b/theme_the_chef/static/description/img/life-ring-icon.svg
new file mode 100644
index 000000000..b6c797ba1
--- /dev/null
+++ b/theme_the_chef/static/description/img/life-ring-icon.svg
@@ -0,0 +1,13 @@
+
diff --git a/theme_the_chef/static/description/img/odoo-consultancy.svg b/theme_the_chef/static/description/img/odoo-consultancy.svg
new file mode 100644
index 000000000..c2c27e608
--- /dev/null
+++ b/theme_the_chef/static/description/img/odoo-consultancy.svg
@@ -0,0 +1,4 @@
+
diff --git a/theme_the_chef/static/description/img/odoo-licencing.svg b/theme_the_chef/static/description/img/odoo-licencing.svg
new file mode 100644
index 000000000..8a520b40f
--- /dev/null
+++ b/theme_the_chef/static/description/img/odoo-licencing.svg
@@ -0,0 +1,3 @@
+
diff --git a/theme_the_chef/static/description/img/patter.svg b/theme_the_chef/static/description/img/patter.svg
new file mode 100644
index 000000000..9b7b0d7cd
--- /dev/null
+++ b/theme_the_chef/static/description/img/patter.svg
@@ -0,0 +1,9 @@
+
diff --git a/theme_the_chef/static/description/img/phone-screenshots.jpg b/theme_the_chef/static/description/img/phone-screenshots.jpg
new file mode 100644
index 000000000..dfb6a8858
Binary files /dev/null and b/theme_the_chef/static/description/img/phone-screenshots.jpg differ
diff --git a/theme_the_chef/static/description/img/product_preview.png b/theme_the_chef/static/description/img/product_preview.png
new file mode 100644
index 000000000..4b338ac28
Binary files /dev/null and b/theme_the_chef/static/description/img/product_preview.png differ
diff --git a/theme_the_chef/static/description/img/puzzle-piece-icon.svg b/theme_the_chef/static/description/img/puzzle-piece-icon.svg
new file mode 100644
index 000000000..ab5e56fa7
--- /dev/null
+++ b/theme_the_chef/static/description/img/puzzle-piece-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/theme_the_chef/static/description/img/screenshot-1.svg b/theme_the_chef/static/description/img/screenshot-1.svg
new file mode 100644
index 000000000..72eeb921b
--- /dev/null
+++ b/theme_the_chef/static/description/img/screenshot-1.svg
@@ -0,0 +1,28 @@
+
diff --git a/theme_the_chef/static/description/img/screenshot-2.png b/theme_the_chef/static/description/img/screenshot-2.png
new file mode 100644
index 000000000..e13b876da
Binary files /dev/null and b/theme_the_chef/static/description/img/screenshot-2.png differ
diff --git a/theme_the_chef/static/description/img/screenshot-3.png b/theme_the_chef/static/description/img/screenshot-3.png
new file mode 100644
index 000000000..be1acdfd5
Binary files /dev/null and b/theme_the_chef/static/description/img/screenshot-3.png differ
diff --git a/theme_the_chef/static/description/img/screenshot-4.png b/theme_the_chef/static/description/img/screenshot-4.png
new file mode 100644
index 000000000..1d01e11fc
Binary files /dev/null and b/theme_the_chef/static/description/img/screenshot-4.png differ
diff --git a/theme_the_chef/static/description/img/screenshot-5.svg b/theme_the_chef/static/description/img/screenshot-5.svg
new file mode 100644
index 000000000..923e355bf
--- /dev/null
+++ b/theme_the_chef/static/description/img/screenshot-5.svg
@@ -0,0 +1,9 @@
+
diff --git a/theme_the_chef/static/description/img/screenshot-img.png b/theme_the_chef/static/description/img/screenshot-img.png
new file mode 100644
index 000000000..a425d9ede
Binary files /dev/null and b/theme_the_chef/static/description/img/screenshot-img.png differ
diff --git a/theme_the_chef/static/description/img/screenshot-main.png b/theme_the_chef/static/description/img/screenshot-main.png
new file mode 100644
index 000000000..575f8e676
Binary files /dev/null and b/theme_the_chef/static/description/img/screenshot-main.png differ
diff --git a/theme_the_chef/static/description/img/shop.png b/theme_the_chef/static/description/img/shop.png
new file mode 100644
index 000000000..db0f9e2eb
Binary files /dev/null and b/theme_the_chef/static/description/img/shop.png differ
diff --git a/theme_the_chef/static/description/img/translate.svg b/theme_the_chef/static/description/img/translate.svg
new file mode 100644
index 000000000..eea729542
--- /dev/null
+++ b/theme_the_chef/static/description/img/translate.svg
@@ -0,0 +1,10 @@
+
diff --git a/theme_the_chef/static/description/img/wrench-icon.svg b/theme_the_chef/static/description/img/wrench-icon.svg
new file mode 100644
index 000000000..4e0ce1d01
--- /dev/null
+++ b/theme_the_chef/static/description/img/wrench-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/theme_the_chef/static/description/index.html b/theme_the_chef/static/description/index.html
new file mode 100644
index 000000000..381e6ba1e
--- /dev/null
+++ b/theme_the_chef/static/description/index.html
@@ -0,0 +1,672 @@
+
+
+
+
+
+
+ app index
+
+
+
+
+
+
+
+
+
+
+
User-friendly and modern looking theme makes your page more Stylish And Beautiful.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Desktop View
+
It is easy to customize and use. Just drag and drop the building blocks to make attractive webpages.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Home Page
+
Theme The Chef is an attractive and modern eCommerce Website theme. Effortlessly craft your unique layout by simply dragging and dropping the building blocks you desire. Elevate your restaurant's online presence with The Chef theme, creating the perfect ambiance for your virtual storefront.
+
+.
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Special Dishes
+
Special Dishes is the snippets that are useful for the showing the special item.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Our Menu
+
It is easy to customize and use. Just drag and drop the building blocks to make attractive webpages. Menu snippet have shows the complete menu for the restaurant.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HIGHLIGHT
+
Reservation
+
Reservation snippet is helpful for reserving the Dining space for the customers. We can make reservations and store each details in database
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Fully Responsive
+ Layout.
+
+
+
+
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.
+
+.