├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── Assests ├── icons │ ├── cart.png │ ├── contact.png │ ├── convo.png │ ├── delivery.png │ ├── footer │ │ ├── fb.png │ │ ├── google.png │ │ ├── heart.png │ │ ├── insta.png │ │ ├── tweet.png │ │ └── word.png │ ├── home.png │ ├── icon_specs │ │ ├── basket.png │ │ ├── clock.png │ │ ├── hat.png │ │ └── leaf.png │ ├── logo.png │ ├── menu.png │ ├── offer.png │ └── white-hand.png └── images │ ├── cart.jpg │ └── stacked │ ├── rest.jpg │ ├── rest1.jpg │ ├── rest2.jpg │ └── rest3.jpg ├── Components ├── Cart │ └── Items │ │ ├── Item │ │ ├── Item.css │ │ └── Item.js │ │ └── Items.js ├── Order │ ├── Items │ │ ├── Item │ │ │ ├── item.css │ │ │ └── item.js │ │ ├── Items.css │ │ └── Items.js │ └── orderForm │ │ ├── orderForm.css │ │ └── orderForm.js ├── buttons │ └── grab-offer │ │ ├── grab-btn.css │ │ └── grab-btn.js ├── menuSections │ ├── menuAll │ │ ├── backPizza.jpg │ │ ├── inOptions │ │ │ ├── inOption │ │ │ │ ├── backPizza.jpg │ │ │ │ ├── inOption.css │ │ │ │ └── inOption.js │ │ │ ├── inOptions.css │ │ │ └── inOptions.js │ │ ├── menuAll.css │ │ ├── menuAll.js │ │ └── singleContain │ │ │ ├── single.css │ │ │ └── single.js │ └── menuHeader │ │ ├── jay.jpg │ │ ├── menuHeader.css │ │ └── menuHeader.js ├── miscelleous │ ├── Map.js │ ├── brand │ │ ├── brand.css │ │ └── brand.js │ ├── flip-card │ │ ├── flip-card.css │ │ └── flip-card.js │ ├── forLoad.js │ └── spinner │ │ ├── spinner.css │ │ └── spinner.js ├── navigation │ ├── backdrop │ │ ├── backdrop.css │ │ └── backdrop.js │ ├── footer │ │ ├── footer.css │ │ └── footer.js │ ├── modal │ │ ├── modal.css │ │ └── modal.js │ └── toolbar │ │ ├── menu.png │ │ ├── toolbar.css │ │ └── toolbar.js └── sections │ ├── section-header │ ├── section.css │ ├── section.js │ ├── vlad-img.jpg │ └── vlad.jpg │ ├── section-specs │ ├── spec │ │ ├── spec.css │ │ └── spec.js │ └── specs.js │ ├── section-tiles │ ├── tile │ │ ├── birthday.jpg │ │ ├── contact_us.jpg │ │ ├── green_burger.jpg │ │ ├── offerpic.jpg │ │ ├── offerpic2.jpeg │ │ ├── offerpic3.jpg │ │ ├── tile.css │ │ └── tile.js │ └── tiles │ │ └── tiles.js │ ├── spec-offer │ ├── pizzaParty.jpg │ ├── specOffer.css │ └── specOffer.js │ └── stacked-photos │ ├── stacked.css │ └── stacked.js ├── Containers ├── AllClass │ └── AllClass.js ├── Cart │ ├── Cart.css │ ├── Cart.js │ └── cart.jpg ├── Home │ └── Home.js ├── Menu │ └── Menu.js ├── Offer │ ├── Offer.css │ ├── Offer.js │ └── offer.png └── OrderOnline │ ├── OrderOnline.css │ ├── OrderOnline.js │ └── serve.png ├── index.css ├── index.js └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Assests/icons/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/cart.png -------------------------------------------------------------------------------- /src/Assests/icons/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/contact.png -------------------------------------------------------------------------------- /src/Assests/icons/convo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/convo.png -------------------------------------------------------------------------------- /src/Assests/icons/delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/delivery.png -------------------------------------------------------------------------------- /src/Assests/icons/footer/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/footer/fb.png -------------------------------------------------------------------------------- /src/Assests/icons/footer/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/footer/google.png -------------------------------------------------------------------------------- /src/Assests/icons/footer/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/footer/heart.png -------------------------------------------------------------------------------- /src/Assests/icons/footer/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/footer/insta.png -------------------------------------------------------------------------------- /src/Assests/icons/footer/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/footer/tweet.png -------------------------------------------------------------------------------- /src/Assests/icons/footer/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/footer/word.png -------------------------------------------------------------------------------- /src/Assests/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/home.png -------------------------------------------------------------------------------- /src/Assests/icons/icon_specs/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/icon_specs/basket.png -------------------------------------------------------------------------------- /src/Assests/icons/icon_specs/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/icon_specs/clock.png -------------------------------------------------------------------------------- /src/Assests/icons/icon_specs/hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/icon_specs/hat.png -------------------------------------------------------------------------------- /src/Assests/icons/icon_specs/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/icon_specs/leaf.png -------------------------------------------------------------------------------- /src/Assests/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/logo.png -------------------------------------------------------------------------------- /src/Assests/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/menu.png -------------------------------------------------------------------------------- /src/Assests/icons/offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/offer.png -------------------------------------------------------------------------------- /src/Assests/icons/white-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/icons/white-hand.png -------------------------------------------------------------------------------- /src/Assests/images/cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/images/cart.jpg -------------------------------------------------------------------------------- /src/Assests/images/stacked/rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/images/stacked/rest.jpg -------------------------------------------------------------------------------- /src/Assests/images/stacked/rest1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/images/stacked/rest1.jpg -------------------------------------------------------------------------------- /src/Assests/images/stacked/rest2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/images/stacked/rest2.jpg -------------------------------------------------------------------------------- /src/Assests/images/stacked/rest3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Assests/images/stacked/rest3.jpg -------------------------------------------------------------------------------- /src/Components/Cart/Items/Item/Item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Cart/Items/Item/Item.css -------------------------------------------------------------------------------- /src/Components/Cart/Items/Item/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Cart/Items/Item/Item.js -------------------------------------------------------------------------------- /src/Components/Cart/Items/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Cart/Items/Items.js -------------------------------------------------------------------------------- /src/Components/Order/Items/Item/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Order/Items/Item/item.css -------------------------------------------------------------------------------- /src/Components/Order/Items/Item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Order/Items/Item/item.js -------------------------------------------------------------------------------- /src/Components/Order/Items/Items.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Order/Items/Items.css -------------------------------------------------------------------------------- /src/Components/Order/Items/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Order/Items/Items.js -------------------------------------------------------------------------------- /src/Components/Order/orderForm/orderForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Order/orderForm/orderForm.css -------------------------------------------------------------------------------- /src/Components/Order/orderForm/orderForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/Order/orderForm/orderForm.js -------------------------------------------------------------------------------- /src/Components/buttons/grab-offer/grab-btn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/buttons/grab-offer/grab-btn.css -------------------------------------------------------------------------------- /src/Components/buttons/grab-offer/grab-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/buttons/grab-offer/grab-btn.js -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/backPizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/backPizza.jpg -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/inOptions/inOption/backPizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/inOptions/inOption/backPizza.jpg -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/inOptions/inOption/inOption.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/inOptions/inOption/inOption.css -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/inOptions/inOption/inOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/inOptions/inOption/inOption.js -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/inOptions/inOptions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/inOptions/inOptions.css -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/inOptions/inOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/inOptions/inOptions.js -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/menuAll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/menuAll.css -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/menuAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/menuAll.js -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/singleContain/single.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/singleContain/single.css -------------------------------------------------------------------------------- /src/Components/menuSections/menuAll/singleContain/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuAll/singleContain/single.js -------------------------------------------------------------------------------- /src/Components/menuSections/menuHeader/jay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuHeader/jay.jpg -------------------------------------------------------------------------------- /src/Components/menuSections/menuHeader/menuHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuHeader/menuHeader.css -------------------------------------------------------------------------------- /src/Components/menuSections/menuHeader/menuHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/menuSections/menuHeader/menuHeader.js -------------------------------------------------------------------------------- /src/Components/miscelleous/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/Map.js -------------------------------------------------------------------------------- /src/Components/miscelleous/brand/brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/brand/brand.css -------------------------------------------------------------------------------- /src/Components/miscelleous/brand/brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/brand/brand.js -------------------------------------------------------------------------------- /src/Components/miscelleous/flip-card/flip-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/flip-card/flip-card.css -------------------------------------------------------------------------------- /src/Components/miscelleous/flip-card/flip-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/flip-card/flip-card.js -------------------------------------------------------------------------------- /src/Components/miscelleous/forLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/forLoad.js -------------------------------------------------------------------------------- /src/Components/miscelleous/spinner/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/spinner/spinner.css -------------------------------------------------------------------------------- /src/Components/miscelleous/spinner/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/miscelleous/spinner/spinner.js -------------------------------------------------------------------------------- /src/Components/navigation/backdrop/backdrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/backdrop/backdrop.css -------------------------------------------------------------------------------- /src/Components/navigation/backdrop/backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/backdrop/backdrop.js -------------------------------------------------------------------------------- /src/Components/navigation/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/footer/footer.css -------------------------------------------------------------------------------- /src/Components/navigation/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/footer/footer.js -------------------------------------------------------------------------------- /src/Components/navigation/modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/modal/modal.css -------------------------------------------------------------------------------- /src/Components/navigation/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/modal/modal.js -------------------------------------------------------------------------------- /src/Components/navigation/toolbar/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/toolbar/menu.png -------------------------------------------------------------------------------- /src/Components/navigation/toolbar/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/toolbar/toolbar.css -------------------------------------------------------------------------------- /src/Components/navigation/toolbar/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/navigation/toolbar/toolbar.js -------------------------------------------------------------------------------- /src/Components/sections/section-header/section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-header/section.css -------------------------------------------------------------------------------- /src/Components/sections/section-header/section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-header/section.js -------------------------------------------------------------------------------- /src/Components/sections/section-header/vlad-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-header/vlad-img.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-header/vlad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-header/vlad.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-specs/spec/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-specs/spec/spec.css -------------------------------------------------------------------------------- /src/Components/sections/section-specs/spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-specs/spec/spec.js -------------------------------------------------------------------------------- /src/Components/sections/section-specs/specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-specs/specs.js -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/birthday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/birthday.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/contact_us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/contact_us.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/green_burger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/green_burger.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/offerpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/offerpic.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/offerpic2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/offerpic2.jpeg -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/offerpic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/offerpic3.jpg -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/tile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/tile.css -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tile/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tile/tile.js -------------------------------------------------------------------------------- /src/Components/sections/section-tiles/tiles/tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/section-tiles/tiles/tiles.js -------------------------------------------------------------------------------- /src/Components/sections/spec-offer/pizzaParty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/spec-offer/pizzaParty.jpg -------------------------------------------------------------------------------- /src/Components/sections/spec-offer/specOffer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/spec-offer/specOffer.css -------------------------------------------------------------------------------- /src/Components/sections/spec-offer/specOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/spec-offer/specOffer.js -------------------------------------------------------------------------------- /src/Components/sections/stacked-photos/stacked.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/stacked-photos/stacked.css -------------------------------------------------------------------------------- /src/Components/sections/stacked-photos/stacked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Components/sections/stacked-photos/stacked.js -------------------------------------------------------------------------------- /src/Containers/AllClass/AllClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/AllClass/AllClass.js -------------------------------------------------------------------------------- /src/Containers/Cart/Cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Cart/Cart.css -------------------------------------------------------------------------------- /src/Containers/Cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Cart/Cart.js -------------------------------------------------------------------------------- /src/Containers/Cart/cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Cart/cart.jpg -------------------------------------------------------------------------------- /src/Containers/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Home/Home.js -------------------------------------------------------------------------------- /src/Containers/Menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Menu/Menu.js -------------------------------------------------------------------------------- /src/Containers/Offer/Offer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Offer/Offer.css -------------------------------------------------------------------------------- /src/Containers/Offer/Offer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Offer/Offer.js -------------------------------------------------------------------------------- /src/Containers/Offer/offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/Offer/offer.png -------------------------------------------------------------------------------- /src/Containers/OrderOnline/OrderOnline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/OrderOnline/OrderOnline.css -------------------------------------------------------------------------------- /src/Containers/OrderOnline/OrderOnline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/OrderOnline/OrderOnline.js -------------------------------------------------------------------------------- /src/Containers/OrderOnline/serve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/Containers/OrderOnline/serve.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aashishpeepra/RestaurantReactApp/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------