A minimal, professional, and performant frontend for the Rasavilas project. This repository encapsulates the logic, structure, and setup necessary for a modern, scalable web application.
Rasavilas-Frontend is designed to deliver a seamless user experience with clean code, modular architecture, and intuitive logic. The project follows best practices for frontend development, ensuring maintainability and ease of collaboration.
- Component-Based Architecture: UI is broken down into small, reusable components.
- State Management: Uses React Context or state management libraries for predictable app state.
- Routing: Client-side routing for smooth navigation (e.g., React Router).
- API Layer: All backend communication is abstracted in the
services/
directory. - Hooks: Custom hooks encapsulate shared logic.
- Utilities: Common helper functions live in the
utils/
directory for DRY code.
git clone https://github.com/bandishachowdhury07/Rasavilas-Frontend.git
cd Rasavilas-Frontend
npm install
# or
yarn install
Create a .env
file in the root directory to store sensitive data (API keys, endpoints, etc.). Example:
REACT_APP_API_BASE_URL=https://api.example.com
npm start
# or
yarn start
Visit http://localhost:3000 to view the app in your browser.
npm run build
# or
yarn build
- Consistent Code Style: Use Prettier and ESLint for code formatting and linting.
- Modular Code: Keep components and logic modular for scalability.
- Documentation: Comment complex logic and update the README as needed.
- Testing: Write unit and integration tests for core components and logic.
- Version Control: Commit early, commit often. Use meaningful commit messages.
Rasavilas-Frontend/
βββ public/
β βββ res.webp
βββ src/
β βββ App.jsx
β βββ main.jsx
β βββ App.css
β βββ index.css
β βββ assets/
β β βββ images/
β β βββ bandisha.jpeg
β β βββ bannar.png
β β βββ four.png
β β βββ image1.png
β β βββ one.png
β β βββ sidebannar.jpeg
β β βββ three.png
β β βββ two.png
β βββ pages/
β β βββ About/
β β β βββ About.jsx
β β β βββ AboutDetails.jsx
β β βββ Contact/
β β β βββ Contact.jsx
β β βββ Dashboard/
β β β βββ Cart.jsx
β β β βββ Dashboard.jsx
β β β βββ Gethelp.jsx
β β β βββ History.jsx
β β β βββ Setting.jsx
β β β βββ Recipe/
β β β βββ Recipe.jsx
β β β βββ Recipe.css
β β β βββ RecipeDetails.jsx
β β βββ Home/
β β β βββ Banner.jsx
β β β βββ Home.jsx
β β βββ Login/
β β βββ Login.jsx
β βββ Shared/
β βββ Footer/
β β βββ Footer.jsx
β βββ NavBar/
β βββ Navbar.jsx
βββ .github/
β βββ workflows/
β βββ deploy.yml
βββ index.html
βββ package.json
βββ postcss.config.js
βββ tailwind.config.js
βββ vite.config.js
βββ README.md
- Built with React
- Bandisha Chowdhury
Minimal. Professional. Scalable.
Happy coding! π
MIT License
Copyright (c) 2025 Bandisha Chowdhury
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.