├── src ├── App.css ├── assests │ ├── img │ │ ├── Food.jpg │ │ ├── bg_1.png │ │ ├── bg_2.png │ │ ├── bg_3.png │ │ ├── logo.png │ │ ├── Drinks.jpg │ │ ├── Three.webp │ │ ├── bhuna.webp │ │ ├── burger.png │ │ ├── coffec.jpeg │ │ ├── icecoffe.png │ │ ├── javaChip.jpg │ │ ├── panner.webp │ │ ├── Bestseller.jpg │ │ ├── ReadyToEat.jpg │ │ ├── caffeLatte.jpg │ │ ├── coldcoffee.jpg │ │ ├── hazelnut.webp │ │ ├── CoffeeAtHome.jpg │ │ ├── Merchandise.jpg │ │ ├── Rabbits_Mug.png │ │ ├── appstoreiOS.png │ │ ├── giftFeature1.png │ │ ├── giftFeature10.jpg │ │ ├── giftFeature11.png │ │ ├── giftFeature12.png │ │ ├── giftFeature13.jpg │ │ ├── giftFeature14.jpg │ │ ├── giftFeature15.png │ │ ├── giftFeature16.png │ │ ├── giftFeature17.png │ │ ├── giftFeature2.png │ │ ├── giftFeature3.jpg │ │ ├── giftFeature4.png │ │ ├── giftFeature5.png │ │ ├── giftFeature6.png │ │ ├── giftFeature7.png │ │ ├── giftFeature8.jpg │ │ ├── giftFeature9.png │ │ ├── masala_chai.png │ │ ├── Welcome_Website.jpg │ │ ├── appstoreAndroid.png │ │ ├── LatestOfferings1.jpg │ │ ├── LatestOfferings2.jpg │ │ ├── LatestOfferings3.jpg │ │ ├── chocolate-brown.webp │ │ ├── Welcome_Website_page.jpg │ │ ├── Bonus_Stars_2d6733cfde.png │ │ ├── Group_1249_39083973b4.png │ │ ├── SignatureHotChocolate.jpg │ │ ├── Vegan_combo_bea05a1288.png │ │ ├── vanillaSweetCreamCold.jpg │ │ ├── Barista_Pride_ca8aec571f.png │ │ ├── Drip_Heart_mug_17980712b6.png │ │ ├── Butter_cold_cup_Valentines.png │ │ ├── Coffee_cherry_spices_9de46c3e1b.jpg │ │ ├── veg.svg │ │ ├── nonveg.svg │ │ ├── greyleafright.svg │ │ └── logo.svg │ └── font │ │ ├── SoDoSans-Black.eot │ │ ├── SoDoSans-Black.ttf │ │ ├── SoDoSans-Bold.eot │ │ ├── SoDoSans-Bold.ttf │ │ ├── SoDoSans-Bold.woff │ │ ├── SoDoSans-Light.eot │ │ ├── SoDoSans-Light.ttf │ │ ├── SoDoSans-Thin.eot │ │ ├── SoDoSans-Thin.ttf │ │ ├── SoDoSans-Thin.woff │ │ ├── SoDoSans-Black.woff │ │ ├── SoDoSans-Black.woff2 │ │ ├── SoDoSans-Bold.woff2 │ │ ├── SoDoSans-Italic.eot │ │ ├── SoDoSans-Italic.ttf │ │ ├── SoDoSans-Italic.woff │ │ ├── SoDoSans-Italic.woff2 │ │ ├── SoDoSans-Light.woff │ │ ├── SoDoSans-Light.woff2 │ │ ├── SoDoSans-Regular.eot │ │ ├── SoDoSans-Regular.ttf │ │ ├── SoDoSans-Regular.woff │ │ ├── SoDoSans-SemiBold.eot │ │ ├── SoDoSans-SemiBold.ttf │ │ ├── SoDoSans-Thin.woff2 │ │ ├── SoDoSans-BoldItalic.eot │ │ ├── SoDoSans-BoldItalic.ttf │ │ ├── SoDoSans-Regular.woff2 │ │ ├── SoDoSans-SemiBold.woff │ │ ├── SoDoSans-SemiBold.woff2 │ │ ├── SoDoSans-ThinItalic.eot │ │ ├── SoDoSans-ThinItalic.ttf │ │ ├── SoDoSans-BlackItalic.eot │ │ ├── SoDoSans-BlackItalic.ttf │ │ ├── SoDoSans-BlackItalic.woff │ │ ├── SoDoSans-BlackItalic.woff2 │ │ ├── SoDoSans-BoldItalic.woff │ │ ├── SoDoSans-BoldItalic.woff2 │ │ ├── SoDoSans-LightItalic.eot │ │ ├── SoDoSans-LightItalic.ttf │ │ ├── SoDoSans-LightItalic.woff │ │ ├── SoDoSans-LightItalic.woff2 │ │ ├── SoDoSans-ThinItalic.woff │ │ ├── SoDoSans-ThinItalic.woff2 │ │ ├── SoDoSans-SemiBoldItalic.eot │ │ ├── SoDoSans-SemiBoldItalic.ttf │ │ ├── SoDoSans-SemiBoldItalic.woff │ │ ├── SoDoSans-SemiBoldItalic.woff2 │ │ ├── stylesheet.css │ │ └── demo.html ├── pages │ ├── Search.js │ ├── Profile.js │ ├── Rewards.js │ ├── Pay.js │ ├── Gift.js │ ├── Order.js │ ├── Store.js │ └── Home.js ├── setupTests.js ├── App.test.js ├── reportWebVitals.js ├── index.js ├── App.js ├── logo.svg ├── index.css ├── data │ └── index.js └── components │ ├── Footer.js │ └── Header.js ├── public ├── favicon.ico ├── logo192.png ├── logo512.png ├── robots.txt ├── manifest.json └── index.html ├── Dockerfile ├── tailwind.config.js ├── package.json └── README.md /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/assests/img/Food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Food.jpg -------------------------------------------------------------------------------- /src/assests/img/bg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/bg_1.png -------------------------------------------------------------------------------- /src/assests/img/bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/bg_2.png -------------------------------------------------------------------------------- /src/assests/img/bg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/bg_3.png -------------------------------------------------------------------------------- /src/assests/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/logo.png -------------------------------------------------------------------------------- /src/assests/img/Drinks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Drinks.jpg -------------------------------------------------------------------------------- /src/assests/img/Three.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Three.webp -------------------------------------------------------------------------------- /src/assests/img/bhuna.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/bhuna.webp -------------------------------------------------------------------------------- /src/assests/img/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/burger.png -------------------------------------------------------------------------------- /src/assests/img/coffec.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/coffec.jpeg -------------------------------------------------------------------------------- /src/assests/img/icecoffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/icecoffe.png -------------------------------------------------------------------------------- /src/assests/img/javaChip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/javaChip.jpg -------------------------------------------------------------------------------- /src/assests/img/panner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/panner.webp -------------------------------------------------------------------------------- /src/assests/img/Bestseller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Bestseller.jpg -------------------------------------------------------------------------------- /src/assests/img/ReadyToEat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/ReadyToEat.jpg -------------------------------------------------------------------------------- /src/assests/img/caffeLatte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/caffeLatte.jpg -------------------------------------------------------------------------------- /src/assests/img/coldcoffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/coldcoffee.jpg -------------------------------------------------------------------------------- /src/assests/img/hazelnut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/hazelnut.webp -------------------------------------------------------------------------------- /src/assests/img/CoffeeAtHome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/CoffeeAtHome.jpg -------------------------------------------------------------------------------- /src/assests/img/Merchandise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Merchandise.jpg -------------------------------------------------------------------------------- /src/assests/img/Rabbits_Mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Rabbits_Mug.png -------------------------------------------------------------------------------- /src/assests/img/appstoreiOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/appstoreiOS.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature1.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature10.jpg -------------------------------------------------------------------------------- /src/assests/img/giftFeature11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature11.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature12.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature13.jpg -------------------------------------------------------------------------------- /src/assests/img/giftFeature14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature14.jpg -------------------------------------------------------------------------------- /src/assests/img/giftFeature15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature15.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature16.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature17.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature2.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature3.jpg -------------------------------------------------------------------------------- /src/assests/img/giftFeature4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature4.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature5.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature6.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature7.png -------------------------------------------------------------------------------- /src/assests/img/giftFeature8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature8.jpg -------------------------------------------------------------------------------- /src/assests/img/giftFeature9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/giftFeature9.png -------------------------------------------------------------------------------- /src/assests/img/masala_chai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/masala_chai.png -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Black.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Black.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Bold.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Bold.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Bold.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Light.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Light.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Thin.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Thin.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Thin.woff -------------------------------------------------------------------------------- /src/assests/img/Welcome_Website.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Welcome_Website.jpg -------------------------------------------------------------------------------- /src/assests/img/appstoreAndroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/appstoreAndroid.png -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Black.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Black.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Bold.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Italic.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Italic.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Italic.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Italic.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Light.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Light.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Regular.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Regular.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Regular.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBold.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Thin.woff2 -------------------------------------------------------------------------------- /src/assests/img/LatestOfferings1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/LatestOfferings1.jpg -------------------------------------------------------------------------------- /src/assests/img/LatestOfferings2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/LatestOfferings2.jpg -------------------------------------------------------------------------------- /src/assests/img/LatestOfferings3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/LatestOfferings3.jpg -------------------------------------------------------------------------------- /src/assests/img/chocolate-brown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/chocolate-brown.webp -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BoldItalic.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-Regular.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBold.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-ThinItalic.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assests/img/Welcome_Website_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Welcome_Website_page.jpg -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BlackItalic.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BlackItalic.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BoldItalic.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-LightItalic.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-LightItalic.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-LightItalic.woff2 -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-ThinItalic.woff -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/assests/img/Bonus_Stars_2d6733cfde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Bonus_Stars_2d6733cfde.png -------------------------------------------------------------------------------- /src/assests/img/Group_1249_39083973b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Group_1249_39083973b4.png -------------------------------------------------------------------------------- /src/assests/img/SignatureHotChocolate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/SignatureHotChocolate.jpg -------------------------------------------------------------------------------- /src/assests/img/Vegan_combo_bea05a1288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Vegan_combo_bea05a1288.png -------------------------------------------------------------------------------- /src/assests/img/vanillaSweetCreamCold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/vanillaSweetCreamCold.jpg -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBoldItalic.eot -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/assests/img/Barista_Pride_ca8aec571f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Barista_Pride_ca8aec571f.png -------------------------------------------------------------------------------- /src/assests/img/Drip_Heart_mug_17980712b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Drip_Heart_mug_17980712b6.png -------------------------------------------------------------------------------- /src/assests/font/SoDoSans-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/font/SoDoSans-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/assests/img/Butter_cold_cup_Valentines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Butter_cold_cup_Valentines.png -------------------------------------------------------------------------------- /src/assests/img/Coffee_cherry_spices_9de46c3e1b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeshwanthlm/starbucks/HEAD/src/assests/img/Coffee_cherry_spices_9de46c3e1b.jpg -------------------------------------------------------------------------------- /src/pages/Search.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const Search = () => { 4 | return ( 5 |
© 2023 Starbucks Coffee Company. All rights reserved.
66 |Project: ${env.JOB_NAME}
171 |Build Number: ${env.BUILD_NUMBER}
174 |URL: ${env.BUILD_URL}
177 |Home
85 |Gift
93 |Order
107 |Pay
116 |Search
124 |{item.title}
40 | 41 | 42 | 43 | ) 44 | 45 | }) 46 | } 47 |{item.title}
94 |{item.des}
96 |{(item.id)==="2" ? "For" : "Starting From"}
97 |₹ {item.price}.{item.paise}
98 |PER SERVE({item.gram} ML)-{item.kcal} kcal
203 |₹ {item.price}.{item.paise}
207 | 208 |Coffee Culture
241 |Ever wondered how Starbucks ensures the quality of your daily cup of coffee? Learn how we bring the best coffee experience possible.
244 | 245 |.your-style {
164 | font-family: 'SoDo Sans';
165 | font-weight: 900;
166 | font-style: italic;
167 | }
168 | 169 | <link rel="preload" href="SoDoSans-BlackItalic.woff2" as="font" type="font/woff2" crossorigin>170 |
172 | abcdefghijklmnopqrstuvwxyz
173 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
174 | 0123456789.:,;()*!?'@#<>$%&^+-=~
175 |
The quick brown fox jumps over the lazy dog.
177 |The quick brown fox jumps over the lazy dog.
178 |The quick brown fox jumps over the lazy dog.
179 |The quick brown fox jumps over the lazy dog.
180 |The quick brown fox jumps over the lazy dog.
181 |The quick brown fox jumps over the lazy dog.
182 |The quick brown fox jumps over the lazy dog.
183 |The quick brown fox jumps over the lazy dog.
184 |The quick brown fox jumps over the lazy dog.
185 |The quick brown fox jumps over the lazy dog.
186 |The quick brown fox jumps over the lazy dog.
187 |.your-style {
193 | font-family: 'SoDo Sans';
194 | font-weight: 900;
195 | font-style: normal;
196 | }
197 | 198 | <link rel="preload" href="SoDoSans-Black.woff2" as="font" type="font/woff2" crossorigin>199 |
201 | abcdefghijklmnopqrstuvwxyz
202 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
203 | 0123456789.:,;()*!?'@#<>$%&^+-=~
204 |
The quick brown fox jumps over the lazy dog.
206 |The quick brown fox jumps over the lazy dog.
207 |The quick brown fox jumps over the lazy dog.
208 |The quick brown fox jumps over the lazy dog.
209 |The quick brown fox jumps over the lazy dog.
210 |The quick brown fox jumps over the lazy dog.
211 |The quick brown fox jumps over the lazy dog.
212 |The quick brown fox jumps over the lazy dog.
213 |The quick brown fox jumps over the lazy dog.
214 |The quick brown fox jumps over the lazy dog.
215 |The quick brown fox jumps over the lazy dog.
216 |.your-style {
222 | font-family: 'SoDo Sans';
223 | font-weight: bold;
224 | font-style: normal;
225 | }
226 | 227 | <link rel="preload" href="SoDoSans-Bold.woff2" as="font" type="font/woff2" crossorigin>228 |
230 | abcdefghijklmnopqrstuvwxyz
231 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
232 | 0123456789.:,;()*!?'@#<>$%&^+-=~
233 |
The quick brown fox jumps over the lazy dog.
235 |The quick brown fox jumps over the lazy dog.
236 |The quick brown fox jumps over the lazy dog.
237 |The quick brown fox jumps over the lazy dog.
238 |The quick brown fox jumps over the lazy dog.
239 |The quick brown fox jumps over the lazy dog.
240 |The quick brown fox jumps over the lazy dog.
241 |The quick brown fox jumps over the lazy dog.
242 |The quick brown fox jumps over the lazy dog.
243 |The quick brown fox jumps over the lazy dog.
244 |The quick brown fox jumps over the lazy dog.
245 |.your-style {
251 | font-family: 'SoDo Sans';
252 | font-weight: 300;
253 | font-style: italic;
254 | }
255 | 256 | <link rel="preload" href="SoDoSans-LightItalic.woff2" as="font" type="font/woff2" crossorigin>257 |
259 | abcdefghijklmnopqrstuvwxyz
260 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
261 | 0123456789.:,;()*!?'@#<>$%&^+-=~
262 |
The quick brown fox jumps over the lazy dog.
264 |The quick brown fox jumps over the lazy dog.
265 |The quick brown fox jumps over the lazy dog.
266 |The quick brown fox jumps over the lazy dog.
267 |The quick brown fox jumps over the lazy dog.
268 |The quick brown fox jumps over the lazy dog.
269 |The quick brown fox jumps over the lazy dog.
270 |The quick brown fox jumps over the lazy dog.
271 |The quick brown fox jumps over the lazy dog.
272 |The quick brown fox jumps over the lazy dog.
273 |The quick brown fox jumps over the lazy dog.
274 |.your-style {
280 | font-family: 'SoDo Sans';
281 | font-weight: normal;
282 | font-style: normal;
283 | }
284 | 285 | <link rel="preload" href="SoDoSans-Regular.woff2" as="font" type="font/woff2" crossorigin>286 |
288 | abcdefghijklmnopqrstuvwxyz
289 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
290 | 0123456789.:,;()*!?'@#<>$%&^+-=~
291 |
The quick brown fox jumps over the lazy dog.
293 |The quick brown fox jumps over the lazy dog.
294 |The quick brown fox jumps over the lazy dog.
295 |The quick brown fox jumps over the lazy dog.
296 |The quick brown fox jumps over the lazy dog.
297 |The quick brown fox jumps over the lazy dog.
298 |The quick brown fox jumps over the lazy dog.
299 |The quick brown fox jumps over the lazy dog.
300 |The quick brown fox jumps over the lazy dog.
301 |The quick brown fox jumps over the lazy dog.
302 |The quick brown fox jumps over the lazy dog.
303 |.your-style {
309 | font-family: 'SoDo Sans';
310 | font-weight: 300;
311 | font-style: normal;
312 | }
313 | 314 | <link rel="preload" href="SoDoSans-Light.woff2" as="font" type="font/woff2" crossorigin>315 |
317 | abcdefghijklmnopqrstuvwxyz
318 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
319 | 0123456789.:,;()*!?'@#<>$%&^+-=~
320 |
The quick brown fox jumps over the lazy dog.
322 |The quick brown fox jumps over the lazy dog.
323 |The quick brown fox jumps over the lazy dog.
324 |The quick brown fox jumps over the lazy dog.
325 |The quick brown fox jumps over the lazy dog.
326 |The quick brown fox jumps over the lazy dog.
327 |The quick brown fox jumps over the lazy dog.
328 |The quick brown fox jumps over the lazy dog.
329 |The quick brown fox jumps over the lazy dog.
330 |The quick brown fox jumps over the lazy dog.
331 |The quick brown fox jumps over the lazy dog.
332 |.your-style {
338 | font-family: 'SoDo Sans';
339 | font-weight: normal;
340 | font-style: italic;
341 | }
342 | 343 | <link rel="preload" href="SoDoSans-Italic.woff2" as="font" type="font/woff2" crossorigin>344 |
346 | abcdefghijklmnopqrstuvwxyz
347 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
348 | 0123456789.:,;()*!?'@#<>$%&^+-=~
349 |
The quick brown fox jumps over the lazy dog.
351 |The quick brown fox jumps over the lazy dog.
352 |The quick brown fox jumps over the lazy dog.
353 |The quick brown fox jumps over the lazy dog.
354 |The quick brown fox jumps over the lazy dog.
355 |The quick brown fox jumps over the lazy dog.
356 |The quick brown fox jumps over the lazy dog.
357 |The quick brown fox jumps over the lazy dog.
358 |The quick brown fox jumps over the lazy dog.
359 |The quick brown fox jumps over the lazy dog.
360 |The quick brown fox jumps over the lazy dog.
361 |.your-style {
367 | font-family: 'SoDo Sans';
368 | font-weight: bold;
369 | font-style: italic;
370 | }
371 | 372 | <link rel="preload" href="SoDoSans-BoldItalic.woff2" as="font" type="font/woff2" crossorigin>373 |
375 | abcdefghijklmnopqrstuvwxyz
376 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
377 | 0123456789.:,;()*!?'@#<>$%&^+-=~
378 |
The quick brown fox jumps over the lazy dog.
380 |The quick brown fox jumps over the lazy dog.
381 |The quick brown fox jumps over the lazy dog.
382 |The quick brown fox jumps over the lazy dog.
383 |The quick brown fox jumps over the lazy dog.
384 |The quick brown fox jumps over the lazy dog.
385 |The quick brown fox jumps over the lazy dog.
386 |The quick brown fox jumps over the lazy dog.
387 |The quick brown fox jumps over the lazy dog.
388 |The quick brown fox jumps over the lazy dog.
389 |The quick brown fox jumps over the lazy dog.
390 |.your-style {
396 | font-family: 'SoDo Sans';
397 | font-weight: 100;
398 | font-style: italic;
399 | }
400 | 401 | <link rel="preload" href="SoDoSans-ThinItalic.woff2" as="font" type="font/woff2" crossorigin>402 |
404 | abcdefghijklmnopqrstuvwxyz
405 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
406 | 0123456789.:,;()*!?'@#<>$%&^+-=~
407 |
The quick brown fox jumps over the lazy dog.
409 |The quick brown fox jumps over the lazy dog.
410 |The quick brown fox jumps over the lazy dog.
411 |The quick brown fox jumps over the lazy dog.
412 |The quick brown fox jumps over the lazy dog.
413 |The quick brown fox jumps over the lazy dog.
414 |The quick brown fox jumps over the lazy dog.
415 |The quick brown fox jumps over the lazy dog.
416 |The quick brown fox jumps over the lazy dog.
417 |The quick brown fox jumps over the lazy dog.
418 |The quick brown fox jumps over the lazy dog.
419 |.your-style {
425 | font-family: 'SoDo Sans';
426 | font-weight: 600;
427 | font-style: italic;
428 | }
429 | 430 | <link rel="preload" href="SoDoSans-SemiBoldItalic.woff2" as="font" type="font/woff2" crossorigin>431 |
433 | abcdefghijklmnopqrstuvwxyz
434 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
435 | 0123456789.:,;()*!?'@#<>$%&^+-=~
436 |
The quick brown fox jumps over the lazy dog.
438 |The quick brown fox jumps over the lazy dog.
439 |The quick brown fox jumps over the lazy dog.
440 |The quick brown fox jumps over the lazy dog.
441 |The quick brown fox jumps over the lazy dog.
442 |The quick brown fox jumps over the lazy dog.
443 |The quick brown fox jumps over the lazy dog.
444 |The quick brown fox jumps over the lazy dog.
445 |The quick brown fox jumps over the lazy dog.
446 |The quick brown fox jumps over the lazy dog.
447 |The quick brown fox jumps over the lazy dog.
448 |.your-style {
454 | font-family: 'SoDo Sans';
455 | font-weight: 100;
456 | font-style: normal;
457 | }
458 | 459 | <link rel="preload" href="SoDoSans-Thin.woff2" as="font" type="font/woff2" crossorigin>460 |
462 | abcdefghijklmnopqrstuvwxyz
463 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
464 | 0123456789.:,;()*!?'@#<>$%&^+-=~
465 |
The quick brown fox jumps over the lazy dog.
467 |The quick brown fox jumps over the lazy dog.
468 |The quick brown fox jumps over the lazy dog.
469 |The quick brown fox jumps over the lazy dog.
470 |The quick brown fox jumps over the lazy dog.
471 |The quick brown fox jumps over the lazy dog.
472 |The quick brown fox jumps over the lazy dog.
473 |The quick brown fox jumps over the lazy dog.
474 |The quick brown fox jumps over the lazy dog.
475 |The quick brown fox jumps over the lazy dog.
476 |The quick brown fox jumps over the lazy dog.
477 |.your-style {
483 | font-family: 'SoDo Sans';
484 | font-weight: 600;
485 | font-style: normal;
486 | }
487 | 488 | <link rel="preload" href="SoDoSans-SemiBold.woff2" as="font" type="font/woff2" crossorigin>489 |
491 | abcdefghijklmnopqrstuvwxyz
492 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
493 | 0123456789.:,;()*!?'@#<>$%&^+-=~
494 |
The quick brown fox jumps over the lazy dog.
496 |The quick brown fox jumps over the lazy dog.
497 |The quick brown fox jumps over the lazy dog.
498 |The quick brown fox jumps over the lazy dog.
499 |The quick brown fox jumps over the lazy dog.
500 |The quick brown fox jumps over the lazy dog.
501 |The quick brown fox jumps over the lazy dog.
502 |The quick brown fox jumps over the lazy dog.
503 |The quick brown fox jumps over the lazy dog.
504 |The quick brown fox jumps over the lazy dog.
505 |The quick brown fox jumps over the lazy dog.
506 |