├── .gitignore ├── README.md ├── package.json ├── public ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── maskable.png ├── offline.html ├── robots.txt └── serviceworker.js └── src ├── App.css ├── App.js ├── components ├── AddDrink │ ├── AddDrink-style.js │ └── index.js ├── AllDrinkList │ ├── CocktailList.js │ ├── CoffeeList.js │ ├── Mocktails.js │ ├── Shakes.js │ └── index.js ├── DrinkContainer.js ├── DrinkType │ ├── DrinkType-style.js │ └── index.js └── Home │ ├── home-style.js │ └── index.js ├── index.js └── pages ├── AddDrink.js ├── Cocktail.js ├── Coffee.js ├── Mocktails.js ├── Shakes.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/maskable.png -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/offline.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/public/serviceworker.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/AddDrink/AddDrink-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AddDrink/AddDrink-style.js -------------------------------------------------------------------------------- /src/components/AddDrink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AddDrink/index.js -------------------------------------------------------------------------------- /src/components/AllDrinkList/CocktailList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AllDrinkList/CocktailList.js -------------------------------------------------------------------------------- /src/components/AllDrinkList/CoffeeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AllDrinkList/CoffeeList.js -------------------------------------------------------------------------------- /src/components/AllDrinkList/Mocktails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AllDrinkList/Mocktails.js -------------------------------------------------------------------------------- /src/components/AllDrinkList/Shakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AllDrinkList/Shakes.js -------------------------------------------------------------------------------- /src/components/AllDrinkList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/AllDrinkList/index.js -------------------------------------------------------------------------------- /src/components/DrinkContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/DrinkContainer.js -------------------------------------------------------------------------------- /src/components/DrinkType/DrinkType-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/DrinkType/DrinkType-style.js -------------------------------------------------------------------------------- /src/components/DrinkType/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/DrinkType/index.js -------------------------------------------------------------------------------- /src/components/Home/home-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/Home/home-style.js -------------------------------------------------------------------------------- /src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/components/Home/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AddDrink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/pages/AddDrink.js -------------------------------------------------------------------------------- /src/pages/Cocktail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/pages/Cocktail.js -------------------------------------------------------------------------------- /src/pages/Coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/pages/Coffee.js -------------------------------------------------------------------------------- /src/pages/Mocktails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/pages/Mocktails.js -------------------------------------------------------------------------------- /src/pages/Shakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/pages/Shakes.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aziz-AXG/drink-menu-frontend/HEAD/src/pages/index.js --------------------------------------------------------------------------------