The content of the website is managed within the source code of the website in the form of markdown files. under src/content, there are two sub directories deals and regular. Each directory has its specific items in the form of file. Each file in the directory represent one item. Deals directory contains all the deals and regular contains the regular items. The schema for both deals and regular items is same. The schema of markdown file of item is as

---
title: Title of the item
description: One line of description
price: Numaric value of price
image: image name with extension
category:  Item Category ( This category should be defined in the configuration file at "src/content/settings/information.md" > mainCategories

---
Here you can write the detailed description of the item 

Add new Item

How to add image

The images of the item and other images in the website are stored in public directory. In public directory, there are also two sub directories deals and regular just like in content that contains the images of the. Add the image in deals or regular directory in public as you added the markdown file in content/deals or content/regular. You can further learn from the examples in the content

To give the reference of item image in deals or regular.

<aside> 💡 Side Note: Do not forget to commit and push the changes to github after doing all modifications. Cloudflare will automatically detect a new commit in github and rebuild the website with a newer version

</aside>