Folder Structure

Below is the HexaDash - Tailwind CSS HTML Admin & Dashboard Template folder structure.

├── src
│   ├── images
│   ├── data
│   ├── assets
│   │   ├── vendor_assets   (third-party plugins and assets)
│   │   │   ├── css
│   │   │   │   ├── All plugin css
│   │   │   ├── js
│   │   │   │   ├── All plugin js
│   │   │   ├── fonts
│   │   │
│   │   ├── theme_assets    (Themes own assets)
│   │   │   ├── tailwind    (Custom tailwind css)
│   │   │   ├── js          (Custom script and initialization)
│
├── gulpfile.js
├── package.json
├── tailwind.config.js
                                    

Important We strongly advise against modifying the core JS and CSS files. It is recommended to exclusively utilize the tailwind.css and custom.js files for incorporating your custom CSS and JS code. This practice helps to prevent conflicts with future template updates. Additionally, we suggest using only tailwind CSS classes in your markup. If you encounter any challenges while writing tailwind classes, You can apply custom CSS in the location src/assets/theme_assets/tailwind/tailwind.css and follow their official documentation here