├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── App.test.js ├── assets ├── Icon │ ├── delivery-man.svg │ ├── facebook.png │ ├── hamburger.svg │ ├── instagram.png │ ├── top-food.svg │ └── twitter.png ├── Logo │ └── Logo.svg └── image │ ├── FoodImage.webp │ ├── Item.png │ ├── about-image.webp │ ├── appstore.png │ ├── cart_button.png │ ├── cart_item.png │ ├── dish1.webp │ ├── dish2.webp │ ├── dish3.webp │ ├── dish4.webp │ ├── dish5.webp │ ├── dish6.webp │ ├── mobile.webp │ └── playstore.png ├── components ├── Cart │ ├── Cart.js │ ├── Cart.module.css │ ├── CartItem.js │ └── CartItem.module.css ├── Footer │ ├── Footer.js │ ├── Footer.module.css │ └── TheFooter.js ├── Header │ ├── NavCartButton.js │ ├── NavCartButton.module.css │ ├── TheNav.js │ ├── TheNavbar.js │ └── TheNavbar.module.css ├── SectionComponents │ ├── HeroThreeContent.js │ ├── HeroThreeContent.module.css │ └── HeroThreeForm.js ├── Sections │ ├── HeroFiveSection.js │ ├── HeroFiveSection.module.css │ ├── HeroFourSection.js │ ├── HeroFourSection.module.css │ ├── HeroSection.js │ ├── HeroSection.module.css │ ├── HeroSevenSection.js │ ├── HeroSevenSection.module.css │ ├── HeroSixSection.js │ ├── HeroSixSection.module.css │ ├── HeroThreeSection.js │ ├── HeroThreeSection.module.css │ ├── HeroTwoSection.js │ ├── HeroTwoSection.module.css │ └── Sections.js ├── Ui │ ├── Input.js │ ├── Input.module.css │ ├── Modal.js │ ├── Modal.module.css │ ├── TheButton.js │ ├── TheButton.module.css │ ├── Tooltip.js │ └── Tooltip.module.css └── store │ ├── CartProvider.js │ └── cartcontext.js ├── index.css ├── index.js ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/assets/Icon/delivery-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Icon/delivery-man.svg -------------------------------------------------------------------------------- /src/assets/Icon/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Icon/facebook.png -------------------------------------------------------------------------------- /src/assets/Icon/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Icon/hamburger.svg -------------------------------------------------------------------------------- /src/assets/Icon/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Icon/instagram.png -------------------------------------------------------------------------------- /src/assets/Icon/top-food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Icon/top-food.svg -------------------------------------------------------------------------------- /src/assets/Icon/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Icon/twitter.png -------------------------------------------------------------------------------- /src/assets/Logo/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/Logo/Logo.svg -------------------------------------------------------------------------------- /src/assets/image/FoodImage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/FoodImage.webp -------------------------------------------------------------------------------- /src/assets/image/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/Item.png -------------------------------------------------------------------------------- /src/assets/image/about-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/about-image.webp -------------------------------------------------------------------------------- /src/assets/image/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/appstore.png -------------------------------------------------------------------------------- /src/assets/image/cart_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/cart_button.png -------------------------------------------------------------------------------- /src/assets/image/cart_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/cart_item.png -------------------------------------------------------------------------------- /src/assets/image/dish1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/dish1.webp -------------------------------------------------------------------------------- /src/assets/image/dish2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/dish2.webp -------------------------------------------------------------------------------- /src/assets/image/dish3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/dish3.webp -------------------------------------------------------------------------------- /src/assets/image/dish4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/dish4.webp -------------------------------------------------------------------------------- /src/assets/image/dish5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/dish5.webp -------------------------------------------------------------------------------- /src/assets/image/dish6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/dish6.webp -------------------------------------------------------------------------------- /src/assets/image/mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/mobile.webp -------------------------------------------------------------------------------- /src/assets/image/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/assets/image/playstore.png -------------------------------------------------------------------------------- /src/components/Cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Cart/Cart.js -------------------------------------------------------------------------------- /src/components/Cart/Cart.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Cart/Cart.module.css -------------------------------------------------------------------------------- /src/components/Cart/CartItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Cart/CartItem.js -------------------------------------------------------------------------------- /src/components/Cart/CartItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Cart/CartItem.module.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Footer/Footer.module.css -------------------------------------------------------------------------------- /src/components/Footer/TheFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Footer/TheFooter.js -------------------------------------------------------------------------------- /src/components/Header/NavCartButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Header/NavCartButton.js -------------------------------------------------------------------------------- /src/components/Header/NavCartButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Header/NavCartButton.module.css -------------------------------------------------------------------------------- /src/components/Header/TheNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Header/TheNav.js -------------------------------------------------------------------------------- /src/components/Header/TheNavbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Header/TheNavbar.js -------------------------------------------------------------------------------- /src/components/Header/TheNavbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Header/TheNavbar.module.css -------------------------------------------------------------------------------- /src/components/SectionComponents/HeroThreeContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/SectionComponents/HeroThreeContent.js -------------------------------------------------------------------------------- /src/components/SectionComponents/HeroThreeContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/SectionComponents/HeroThreeContent.module.css -------------------------------------------------------------------------------- /src/components/SectionComponents/HeroThreeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/SectionComponents/HeroThreeForm.js -------------------------------------------------------------------------------- /src/components/Sections/HeroFiveSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroFiveSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroFiveSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroFiveSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/HeroFourSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroFourSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroFourSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroFourSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/HeroSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/HeroSevenSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroSevenSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroSevenSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroSevenSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/HeroSixSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroSixSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroSixSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroSixSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/HeroThreeSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroThreeSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroThreeSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroThreeSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/HeroTwoSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroTwoSection.js -------------------------------------------------------------------------------- /src/components/Sections/HeroTwoSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/HeroTwoSection.module.css -------------------------------------------------------------------------------- /src/components/Sections/Sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Sections/Sections.js -------------------------------------------------------------------------------- /src/components/Ui/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/Input.js -------------------------------------------------------------------------------- /src/components/Ui/Input.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/Input.module.css -------------------------------------------------------------------------------- /src/components/Ui/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/Modal.js -------------------------------------------------------------------------------- /src/components/Ui/Modal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/Modal.module.css -------------------------------------------------------------------------------- /src/components/Ui/TheButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/TheButton.js -------------------------------------------------------------------------------- /src/components/Ui/TheButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/TheButton.module.css -------------------------------------------------------------------------------- /src/components/Ui/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/Tooltip.js -------------------------------------------------------------------------------- /src/components/Ui/Tooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/Ui/Tooltip.module.css -------------------------------------------------------------------------------- /src/components/store/CartProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/store/CartProvider.js -------------------------------------------------------------------------------- /src/components/store/cartcontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/components/store/cartcontext.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eniola-Codes/Food-Order-Landing-Page/HEAD/src/setupTests.js --------------------------------------------------------------------------------