├── README.md ├── app.webmanifest ├── components ├── DetailsPage.css ├── MenuPage.css └── OrderPage.css ├── data ├── images │ ├── blackamericano.png │ ├── blacktea.png │ ├── cappuccino.png │ ├── coldbrew.png │ ├── croissant.png │ ├── flatwhite.png │ ├── frappuccino.png │ ├── greentea.png │ ├── icedcoffee.png │ ├── macchiato.png │ └── muffin.png └── menu.json ├── images ├── .DS_Store ├── FrontendMastersLogo.png ├── icons │ ├── icon-maskable.png │ └── icon.png ├── logo.png ├── logo.svg ├── screen1.jpg └── screen2.jpg ├── index.html ├── serviceworker.js └── styles.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/README.md -------------------------------------------------------------------------------- /app.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/app.webmanifest -------------------------------------------------------------------------------- /components/DetailsPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/components/DetailsPage.css -------------------------------------------------------------------------------- /components/MenuPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/components/MenuPage.css -------------------------------------------------------------------------------- /components/OrderPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/components/OrderPage.css -------------------------------------------------------------------------------- /data/images/blackamericano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/blackamericano.png -------------------------------------------------------------------------------- /data/images/blacktea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/blacktea.png -------------------------------------------------------------------------------- /data/images/cappuccino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/cappuccino.png -------------------------------------------------------------------------------- /data/images/coldbrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/coldbrew.png -------------------------------------------------------------------------------- /data/images/croissant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/croissant.png -------------------------------------------------------------------------------- /data/images/flatwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/flatwhite.png -------------------------------------------------------------------------------- /data/images/frappuccino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/frappuccino.png -------------------------------------------------------------------------------- /data/images/greentea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/greentea.png -------------------------------------------------------------------------------- /data/images/icedcoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/icedcoffee.png -------------------------------------------------------------------------------- /data/images/macchiato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/macchiato.png -------------------------------------------------------------------------------- /data/images/muffin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/images/muffin.png -------------------------------------------------------------------------------- /data/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/data/menu.json -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/FrontendMastersLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/FrontendMastersLogo.png -------------------------------------------------------------------------------- /images/icons/icon-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/icons/icon-maskable.png -------------------------------------------------------------------------------- /images/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/icons/icon.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/screen1.jpg -------------------------------------------------------------------------------- /images/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/images/screen2.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/index.html -------------------------------------------------------------------------------- /serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/serviceworker.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/coffeemasters-vanilla/HEAD/styles.css --------------------------------------------------------------------------------