├── .gitignore ├── README.md ├── index.html ├── package.json ├── public └── logo.svg ├── src ├── assets │ ├── CaretLeft.svg │ ├── banner-img-L.png │ ├── banner-img-S.png │ ├── chevron-down.svg │ ├── empty_plate.png │ ├── exit.svg │ ├── heart.svg │ ├── logo-footer.svg │ ├── logo.svg │ ├── menu-close.svg │ ├── menu-open.svg │ ├── minus.svg │ ├── plus.svg │ ├── preview.png │ ├── receipt.svg │ ├── salada.png │ └── upload.svg ├── components │ ├── Button │ │ ├── index.jsx │ │ └── styles.js │ ├── Card │ │ ├── index.jsx │ │ └── styles.js │ ├── Footer │ │ ├── index.jsx │ │ └── styles.js │ ├── Header │ │ ├── index.jsx │ │ └── styles.js │ ├── Input │ │ ├── index.jsx │ │ └── styles.js │ ├── InputCurrency │ │ ├── index.jsx │ │ └── styles.js │ ├── Modal │ │ ├── index.jsx │ │ └── styles.js │ ├── NewTag │ │ ├── index.jsx │ │ └── styles.js │ ├── QuantityPicker │ │ ├── index.jsx │ │ └── styles.js │ ├── Slider │ │ ├── index.jsx │ │ └── styles.js │ └── Tag │ │ ├── index.jsx │ │ └── styles.js ├── hooks │ ├── auth.jsx │ ├── cart.jsx │ ├── localStorage.js │ └── search.jsx ├── main.jsx ├── pages │ ├── Dish │ │ ├── index.jsx │ │ └── styles.js │ ├── EditDish │ │ ├── index.jsx │ │ └── styles.js │ ├── Home │ │ ├── index.jsx │ │ └── styles.js │ ├── NewDish │ │ ├── index.jsx │ │ └── styles.js │ ├── SignIn │ │ ├── index.jsx │ │ └── styles.js │ └── SignUp │ │ ├── index.jsx │ │ └── styles.js ├── routes │ ├── app.routes.jsx │ ├── auth.routes.jsx │ └── index.jsx ├── services │ └── api.js ├── styles │ ├── device.js │ ├── global.js │ └── theme.js └── utils │ └── jwt.js ├── vercel.toml └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/package.json -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/public/logo.svg -------------------------------------------------------------------------------- /src/assets/CaretLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/CaretLeft.svg -------------------------------------------------------------------------------- /src/assets/banner-img-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/banner-img-L.png -------------------------------------------------------------------------------- /src/assets/banner-img-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/banner-img-S.png -------------------------------------------------------------------------------- /src/assets/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/chevron-down.svg -------------------------------------------------------------------------------- /src/assets/empty_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/empty_plate.png -------------------------------------------------------------------------------- /src/assets/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/exit.svg -------------------------------------------------------------------------------- /src/assets/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/heart.svg -------------------------------------------------------------------------------- /src/assets/logo-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/logo-footer.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/menu-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/menu-close.svg -------------------------------------------------------------------------------- /src/assets/menu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/menu-open.svg -------------------------------------------------------------------------------- /src/assets/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/minus.svg -------------------------------------------------------------------------------- /src/assets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/plus.svg -------------------------------------------------------------------------------- /src/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/preview.png -------------------------------------------------------------------------------- /src/assets/receipt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/receipt.svg -------------------------------------------------------------------------------- /src/assets/salada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/salada.png -------------------------------------------------------------------------------- /src/assets/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/assets/upload.svg -------------------------------------------------------------------------------- /src/components/Button/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Button/index.jsx -------------------------------------------------------------------------------- /src/components/Button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Button/styles.js -------------------------------------------------------------------------------- /src/components/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Card/index.jsx -------------------------------------------------------------------------------- /src/components/Card/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Card/styles.js -------------------------------------------------------------------------------- /src/components/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Footer/index.jsx -------------------------------------------------------------------------------- /src/components/Footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Footer/styles.js -------------------------------------------------------------------------------- /src/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Header/index.jsx -------------------------------------------------------------------------------- /src/components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Header/styles.js -------------------------------------------------------------------------------- /src/components/Input/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Input/index.jsx -------------------------------------------------------------------------------- /src/components/Input/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Input/styles.js -------------------------------------------------------------------------------- /src/components/InputCurrency/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/InputCurrency/index.jsx -------------------------------------------------------------------------------- /src/components/InputCurrency/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/InputCurrency/styles.js -------------------------------------------------------------------------------- /src/components/Modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Modal/index.jsx -------------------------------------------------------------------------------- /src/components/Modal/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Modal/styles.js -------------------------------------------------------------------------------- /src/components/NewTag/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/NewTag/index.jsx -------------------------------------------------------------------------------- /src/components/NewTag/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/NewTag/styles.js -------------------------------------------------------------------------------- /src/components/QuantityPicker/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/QuantityPicker/index.jsx -------------------------------------------------------------------------------- /src/components/QuantityPicker/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/QuantityPicker/styles.js -------------------------------------------------------------------------------- /src/components/Slider/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Slider/index.jsx -------------------------------------------------------------------------------- /src/components/Slider/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Slider/styles.js -------------------------------------------------------------------------------- /src/components/Tag/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Tag/index.jsx -------------------------------------------------------------------------------- /src/components/Tag/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/components/Tag/styles.js -------------------------------------------------------------------------------- /src/hooks/auth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/hooks/auth.jsx -------------------------------------------------------------------------------- /src/hooks/cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/hooks/cart.jsx -------------------------------------------------------------------------------- /src/hooks/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/hooks/localStorage.js -------------------------------------------------------------------------------- /src/hooks/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/hooks/search.jsx -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Dish/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/Dish/index.jsx -------------------------------------------------------------------------------- /src/pages/Dish/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/Dish/styles.js -------------------------------------------------------------------------------- /src/pages/EditDish/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/EditDish/index.jsx -------------------------------------------------------------------------------- /src/pages/EditDish/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/EditDish/styles.js -------------------------------------------------------------------------------- /src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /src/pages/Home/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/Home/styles.js -------------------------------------------------------------------------------- /src/pages/NewDish/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/NewDish/index.jsx -------------------------------------------------------------------------------- /src/pages/NewDish/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/NewDish/styles.js -------------------------------------------------------------------------------- /src/pages/SignIn/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/SignIn/index.jsx -------------------------------------------------------------------------------- /src/pages/SignIn/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/SignIn/styles.js -------------------------------------------------------------------------------- /src/pages/SignUp/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/SignUp/index.jsx -------------------------------------------------------------------------------- /src/pages/SignUp/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/pages/SignUp/styles.js -------------------------------------------------------------------------------- /src/routes/app.routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/routes/app.routes.jsx -------------------------------------------------------------------------------- /src/routes/auth.routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/routes/auth.routes.jsx -------------------------------------------------------------------------------- /src/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/routes/index.jsx -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/services/api.js -------------------------------------------------------------------------------- /src/styles/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/styles/device.js -------------------------------------------------------------------------------- /src/styles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/styles/global.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /src/utils/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/src/utils/jwt.js -------------------------------------------------------------------------------- /vercel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/vercel.toml -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsouloficial/foodexplorer-FrontEnd/HEAD/vite.config.js --------------------------------------------------------------------------------