├── README.md ├── Restaurant Website UI Template (Community).fig ├── cover-image.png └── foodi-client ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── images │ ├── home │ │ ├── b-food1.png │ │ ├── banner.png │ │ ├── category │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ ├── img3.png │ │ │ └── img4.png │ │ ├── services │ │ │ ├── icon1.png │ │ │ ├── icon2.png │ │ │ ├── icon3.png │ │ │ └── icon4.png │ │ └── testimonials │ │ │ ├── testimonial1.png │ │ │ ├── testimonial2.png │ │ │ ├── testimonial3.png │ │ │ └── testimonials.png │ └── recipes │ │ ├── img1.png │ │ ├── img2.png │ │ └── img3.png ├── logo.png ├── menu.json └── vite.svg ├── src ├── App.css ├── App.jsx ├── PrivateRouter │ └── PrivateRouter.jsx ├── assets │ └── react.svg ├── components │ ├── Banner.jsx │ ├── Cards.jsx │ ├── Footer.jsx │ ├── LoadingSpinner.jsx │ ├── Modal.jsx │ ├── Navbar.jsx │ ├── Profile.jsx │ └── Signup.jsx ├── contexts │ └── AuthProvider.jsx ├── firebase │ └── firebase.config.js ├── index.css ├── layout │ └── Main.jsx ├── main.jsx ├── pages │ ├── dashboard │ │ └── UpdateProfile.jsx │ ├── home │ │ ├── BasicCard.jsx │ │ ├── Catagories.jsx │ │ ├── Home.jsx │ │ ├── OurServices.jsx │ │ ├── SpecialDishes.jsx │ │ └── Testimonials.jsx │ └── shop │ │ └── Menu.jsx └── router │ └── Router.jsx ├── tailwind.config.js └── vite.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/README.md -------------------------------------------------------------------------------- /Restaurant Website UI Template (Community).fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/Restaurant Website UI Template (Community).fig -------------------------------------------------------------------------------- /cover-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/cover-image.png -------------------------------------------------------------------------------- /foodi-client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/.eslintrc.cjs -------------------------------------------------------------------------------- /foodi-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/.gitignore -------------------------------------------------------------------------------- /foodi-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/README.md -------------------------------------------------------------------------------- /foodi-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/index.html -------------------------------------------------------------------------------- /foodi-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/package-lock.json -------------------------------------------------------------------------------- /foodi-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/package.json -------------------------------------------------------------------------------- /foodi-client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/postcss.config.js -------------------------------------------------------------------------------- /foodi-client/public/images/home/b-food1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/b-food1.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/banner.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/category/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/category/img1.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/category/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/category/img2.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/category/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/category/img3.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/category/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/category/img4.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/services/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/services/icon1.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/services/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/services/icon2.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/services/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/services/icon3.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/services/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/services/icon4.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/testimonials/testimonial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/testimonials/testimonial1.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/testimonials/testimonial2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/testimonials/testimonial2.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/testimonials/testimonial3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/testimonials/testimonial3.png -------------------------------------------------------------------------------- /foodi-client/public/images/home/testimonials/testimonials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/home/testimonials/testimonials.png -------------------------------------------------------------------------------- /foodi-client/public/images/recipes/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/recipes/img1.png -------------------------------------------------------------------------------- /foodi-client/public/images/recipes/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/recipes/img2.png -------------------------------------------------------------------------------- /foodi-client/public/images/recipes/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/images/recipes/img3.png -------------------------------------------------------------------------------- /foodi-client/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/logo.png -------------------------------------------------------------------------------- /foodi-client/public/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/menu.json -------------------------------------------------------------------------------- /foodi-client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/public/vite.svg -------------------------------------------------------------------------------- /foodi-client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/App.css -------------------------------------------------------------------------------- /foodi-client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/App.jsx -------------------------------------------------------------------------------- /foodi-client/src/PrivateRouter/PrivateRouter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/PrivateRouter/PrivateRouter.jsx -------------------------------------------------------------------------------- /foodi-client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/assets/react.svg -------------------------------------------------------------------------------- /foodi-client/src/components/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Banner.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/Cards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Cards.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Footer.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/LoadingSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/LoadingSpinner.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Modal.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Navbar.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Profile.jsx -------------------------------------------------------------------------------- /foodi-client/src/components/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/components/Signup.jsx -------------------------------------------------------------------------------- /foodi-client/src/contexts/AuthProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/contexts/AuthProvider.jsx -------------------------------------------------------------------------------- /foodi-client/src/firebase/firebase.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/firebase/firebase.config.js -------------------------------------------------------------------------------- /foodi-client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/index.css -------------------------------------------------------------------------------- /foodi-client/src/layout/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/layout/Main.jsx -------------------------------------------------------------------------------- /foodi-client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/main.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/dashboard/UpdateProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/dashboard/UpdateProfile.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/home/BasicCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/home/BasicCard.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/home/Catagories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/home/Catagories.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/home/Home.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/home/OurServices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/home/OurServices.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/home/SpecialDishes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/home/SpecialDishes.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/home/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/home/Testimonials.jsx -------------------------------------------------------------------------------- /foodi-client/src/pages/shop/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/pages/shop/Menu.jsx -------------------------------------------------------------------------------- /foodi-client/src/router/Router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/src/router/Router.jsx -------------------------------------------------------------------------------- /foodi-client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/tailwind.config.js -------------------------------------------------------------------------------- /foodi-client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdalmamunit427/complete-mern-project-resources/HEAD/foodi-client/vite.config.js --------------------------------------------------------------------------------