├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── CartContainer.jsx │ ├── CartItem.jsx │ ├── CreateContainer.jsx │ ├── Header.jsx │ ├── HomeContainer.jsx │ ├── Loader.jsx │ ├── MainContainer.jsx │ ├── MenuContainer.jsx │ ├── RowContainer.jsx │ └── index.js ├── context │ ├── StateProvider.js │ ├── initalState.js │ └── reducer.js ├── firebase.config.js ├── img │ ├── NotFound.svg │ ├── avatar.png │ ├── c1.png │ ├── c2.png │ ├── c3.png │ ├── c4.png │ ├── c6.png │ ├── c7.png │ ├── chef1.png │ ├── cheff.png │ ├── cu1.png │ ├── cu2.png │ ├── cu3.png │ ├── cu4.png │ ├── cu5.png │ ├── cu6.png │ ├── d1.png │ ├── d2.png │ ├── d3.png │ ├── d4.png │ ├── d5.png │ ├── d6.png │ ├── d7.png │ ├── d8.png │ ├── delivery.png │ ├── emptyCart.svg │ ├── f1.png │ ├── f10.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── f5.png │ ├── f6.png │ ├── f7.png │ ├── f8.png │ ├── f9.png │ ├── fi1.png │ ├── fi2.png │ ├── fi3.png │ ├── fi4.png │ ├── fi5.png │ ├── heroBg.png │ ├── i1.png │ ├── i2.png │ ├── i3.png │ ├── i4.png │ ├── i5.png │ ├── i6.png │ ├── i7.png │ ├── logo.png │ ├── r1.png │ ├── r2.png │ ├── r3.png │ ├── r4.png │ └── r5.png ├── index.css ├── index.js └── utils │ ├── data.js │ ├── fetchLocalStorageData.js │ └── firebaseFunctions.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/CartContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/CartContainer.jsx -------------------------------------------------------------------------------- /src/components/CartItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/CartItem.jsx -------------------------------------------------------------------------------- /src/components/CreateContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/CreateContainer.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/HomeContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/HomeContainer.jsx -------------------------------------------------------------------------------- /src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/Loader.jsx -------------------------------------------------------------------------------- /src/components/MainContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/MainContainer.jsx -------------------------------------------------------------------------------- /src/components/MenuContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/MenuContainer.jsx -------------------------------------------------------------------------------- /src/components/RowContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/RowContainer.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/context/StateProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/context/StateProvider.js -------------------------------------------------------------------------------- /src/context/initalState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/context/initalState.js -------------------------------------------------------------------------------- /src/context/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/context/reducer.js -------------------------------------------------------------------------------- /src/firebase.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/firebase.config.js -------------------------------------------------------------------------------- /src/img/NotFound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/NotFound.svg -------------------------------------------------------------------------------- /src/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/avatar.png -------------------------------------------------------------------------------- /src/img/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/c1.png -------------------------------------------------------------------------------- /src/img/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/c2.png -------------------------------------------------------------------------------- /src/img/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/c3.png -------------------------------------------------------------------------------- /src/img/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/c4.png -------------------------------------------------------------------------------- /src/img/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/c6.png -------------------------------------------------------------------------------- /src/img/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/c7.png -------------------------------------------------------------------------------- /src/img/chef1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/chef1.png -------------------------------------------------------------------------------- /src/img/cheff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cheff.png -------------------------------------------------------------------------------- /src/img/cu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cu1.png -------------------------------------------------------------------------------- /src/img/cu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cu2.png -------------------------------------------------------------------------------- /src/img/cu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cu3.png -------------------------------------------------------------------------------- /src/img/cu4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cu4.png -------------------------------------------------------------------------------- /src/img/cu5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cu5.png -------------------------------------------------------------------------------- /src/img/cu6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/cu6.png -------------------------------------------------------------------------------- /src/img/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d1.png -------------------------------------------------------------------------------- /src/img/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d2.png -------------------------------------------------------------------------------- /src/img/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d3.png -------------------------------------------------------------------------------- /src/img/d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d4.png -------------------------------------------------------------------------------- /src/img/d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d5.png -------------------------------------------------------------------------------- /src/img/d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d6.png -------------------------------------------------------------------------------- /src/img/d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d7.png -------------------------------------------------------------------------------- /src/img/d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/d8.png -------------------------------------------------------------------------------- /src/img/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/delivery.png -------------------------------------------------------------------------------- /src/img/emptyCart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/emptyCart.svg -------------------------------------------------------------------------------- /src/img/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f1.png -------------------------------------------------------------------------------- /src/img/f10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f10.png -------------------------------------------------------------------------------- /src/img/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f2.png -------------------------------------------------------------------------------- /src/img/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f3.png -------------------------------------------------------------------------------- /src/img/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f4.png -------------------------------------------------------------------------------- /src/img/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f5.png -------------------------------------------------------------------------------- /src/img/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f6.png -------------------------------------------------------------------------------- /src/img/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f7.png -------------------------------------------------------------------------------- /src/img/f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f8.png -------------------------------------------------------------------------------- /src/img/f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/f9.png -------------------------------------------------------------------------------- /src/img/fi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/fi1.png -------------------------------------------------------------------------------- /src/img/fi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/fi2.png -------------------------------------------------------------------------------- /src/img/fi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/fi3.png -------------------------------------------------------------------------------- /src/img/fi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/fi4.png -------------------------------------------------------------------------------- /src/img/fi5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/fi5.png -------------------------------------------------------------------------------- /src/img/heroBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/heroBg.png -------------------------------------------------------------------------------- /src/img/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i1.png -------------------------------------------------------------------------------- /src/img/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i2.png -------------------------------------------------------------------------------- /src/img/i3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i3.png -------------------------------------------------------------------------------- /src/img/i4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i4.png -------------------------------------------------------------------------------- /src/img/i5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i5.png -------------------------------------------------------------------------------- /src/img/i6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i6.png -------------------------------------------------------------------------------- /src/img/i7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/i7.png -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/r1.png -------------------------------------------------------------------------------- /src/img/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/r2.png -------------------------------------------------------------------------------- /src/img/r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/r3.png -------------------------------------------------------------------------------- /src/img/r4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/r4.png -------------------------------------------------------------------------------- /src/img/r5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/img/r5.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/utils/data.js -------------------------------------------------------------------------------- /src/utils/fetchLocalStorageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/utils/fetchLocalStorageData.js -------------------------------------------------------------------------------- /src/utils/firebaseFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/src/utils/firebaseFunctions.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vetrivel-VP/foodapp-yt-mar22/HEAD/yarn.lock --------------------------------------------------------------------------------