├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── assets ├── bg.png ├── bg.svg ├── burger1.png ├── burger2.png ├── burger3.png └── founder.webp ├── components ├── about │ └── About.jsx ├── admin │ ├── Dashboard.jsx │ ├── Orders.jsx │ └── Users.jsx ├── cart │ ├── Cart.jsx │ ├── ConfirmOrder.jsx │ ├── PaymentSuccess.jsx │ └── Shipping.jsx ├── contact │ └── Contact.jsx ├── home │ ├── Founder.jsx │ ├── Home.jsx │ ├── Menu.jsx │ └── MenuCard.jsx ├── layout │ ├── Footer.jsx │ ├── Header.jsx │ ├── Loader.jsx │ └── NotFound.jsx ├── login │ └── Login.jsx ├── myOrders │ ├── MyOrders.jsx │ └── OrderDetails.jsx └── profile │ └── Profile.jsx ├── index.js └── styles ├── about.scss ├── app.scss ├── cart.scss ├── colors.scss ├── confirmOrder.scss ├── contact.scss ├── dashboard.scss ├── footer.scss ├── founder.scss ├── header.scss ├── home.scss ├── login.scss ├── menu.scss ├── orderDetails.scss ├── paymentsuccess.scss ├── profile.scss ├── shipping.scss └── table.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/assets/bg.png -------------------------------------------------------------------------------- /src/assets/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/assets/bg.svg -------------------------------------------------------------------------------- /src/assets/burger1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/assets/burger1.png -------------------------------------------------------------------------------- /src/assets/burger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/assets/burger2.png -------------------------------------------------------------------------------- /src/assets/burger3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/assets/burger3.png -------------------------------------------------------------------------------- /src/assets/founder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/assets/founder.webp -------------------------------------------------------------------------------- /src/components/about/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/about/About.jsx -------------------------------------------------------------------------------- /src/components/admin/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/admin/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/admin/Orders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/admin/Orders.jsx -------------------------------------------------------------------------------- /src/components/admin/Users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/admin/Users.jsx -------------------------------------------------------------------------------- /src/components/cart/Cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/cart/Cart.jsx -------------------------------------------------------------------------------- /src/components/cart/ConfirmOrder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/cart/ConfirmOrder.jsx -------------------------------------------------------------------------------- /src/components/cart/PaymentSuccess.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/cart/PaymentSuccess.jsx -------------------------------------------------------------------------------- /src/components/cart/Shipping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/cart/Shipping.jsx -------------------------------------------------------------------------------- /src/components/contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/contact/Contact.jsx -------------------------------------------------------------------------------- /src/components/home/Founder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/home/Founder.jsx -------------------------------------------------------------------------------- /src/components/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/home/Home.jsx -------------------------------------------------------------------------------- /src/components/home/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/home/Menu.jsx -------------------------------------------------------------------------------- /src/components/home/MenuCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/home/MenuCard.jsx -------------------------------------------------------------------------------- /src/components/layout/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/layout/Footer.jsx -------------------------------------------------------------------------------- /src/components/layout/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/layout/Header.jsx -------------------------------------------------------------------------------- /src/components/layout/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/layout/Loader.jsx -------------------------------------------------------------------------------- /src/components/layout/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/layout/NotFound.jsx -------------------------------------------------------------------------------- /src/components/login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/login/Login.jsx -------------------------------------------------------------------------------- /src/components/myOrders/MyOrders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/myOrders/MyOrders.jsx -------------------------------------------------------------------------------- /src/components/myOrders/OrderDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/myOrders/OrderDetails.jsx -------------------------------------------------------------------------------- /src/components/profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/components/profile/Profile.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/about.scss -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/cart.scss -------------------------------------------------------------------------------- /src/styles/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/colors.scss -------------------------------------------------------------------------------- /src/styles/confirmOrder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/confirmOrder.scss -------------------------------------------------------------------------------- /src/styles/contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/contact.scss -------------------------------------------------------------------------------- /src/styles/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/dashboard.scss -------------------------------------------------------------------------------- /src/styles/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/footer.scss -------------------------------------------------------------------------------- /src/styles/founder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/founder.scss -------------------------------------------------------------------------------- /src/styles/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/header.scss -------------------------------------------------------------------------------- /src/styles/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/home.scss -------------------------------------------------------------------------------- /src/styles/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/login.scss -------------------------------------------------------------------------------- /src/styles/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/menu.scss -------------------------------------------------------------------------------- /src/styles/orderDetails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/orderDetails.scss -------------------------------------------------------------------------------- /src/styles/paymentsuccess.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/paymentsuccess.scss -------------------------------------------------------------------------------- /src/styles/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/profile.scss -------------------------------------------------------------------------------- /src/styles/shipping.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/shipping.scss -------------------------------------------------------------------------------- /src/styles/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/mbaburgerwalaUI/HEAD/src/styles/table.scss --------------------------------------------------------------------------------