Beetheme is a free and open source template developed by students from WeProDev Academy. This project is part of the first phase of the BootCamp that WeProDev Academy provide, you can find the details of the BootCamp here in the WeProDev Academy Repository
To help you navigate through the BeeTheme project, below is an overview of the main file and folder structure.
root/
├── apps/
│ ├── original/ # Original Project
│ ├── react/ # React Version
│ │ ├── project-name/
| | | ├── components/ # Project-specific components
│ │ | ├── images/ # Images used for that project
│ │ | ├── App.tsx # Page of that project
│ │ | └── README.md # Including licenses for used images, etc.
│ │ ├── components/ # Shared react components
│ │ ├── App.tsx # Load all templates (React)
│ │ ├── main.tsx # Routing of react app
│ │ ├── index.html # Entry point of react app
| | |
│ │ ├── eslint.config.js # eslint configuration for react app
│ │ ├── package.json # Managing packages, scripts of react app
│ │ ├── tsconfig.json # Typesctipt configuration for react app
│ │ └── vite.config.ts # Vite configuration for react app
│ └── vue/ # Vue Version (for future)
├── shared/
| ├── assets/ # Shared static files (images, fonts)
| ├── scripts/ # Shared vanilla JavaScript utilities
| └── styles/ # Common styles (CSS, Sass)
├── index.html # Load all templates (Original)
├── index-script.js # JS file for index file
├── .gitignore # Exclude unnecessary files
└── README.md # Project overview
⭐ If you find this template useful, please consider sharing it on social media to help others discover it.
MIT License Copyright (c) [2024] [WeProDev Academy]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.