├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .storybook ├── main.js └── preview.js ├── LICENSE ├── README.md ├── babel.config.js ├── ifood.gif ├── jest.config.js ├── next-env.d.ts ├── package.json ├── prettier.config.js ├── public ├── favicon.ico └── vercel.svg ├── server.json ├── setupTests.js ├── src ├── __tests__ │ ├── components │ │ └── Categories.spec.tsx │ ├── hooks │ │ └── useAxios.spec.ts │ └── pages │ │ ├── Category.spec.tsx │ │ └── Home.spec.tsx ├── components │ ├── Empty.tsx │ ├── FloatingBox.tsx │ ├── Header.tsx │ ├── Input.tsx │ ├── Menu.tsx │ ├── MobileMenu.tsx │ └── pages │ │ ├── Home │ │ ├── Carousel.tsx │ │ ├── Categories.tsx │ │ ├── Famous.tsx │ │ ├── Restaurant.tsx │ │ ├── SuggestedRestaurants.tsx │ │ ├── Voucher.tsx │ │ └── placeholders │ │ │ ├── CarouselPlaceholder.tsx │ │ │ ├── CategoryPlaceHolder.tsx │ │ │ └── RestaurantPlaceholder.tsx │ │ └── Restaurant │ │ ├── Carousel.tsx │ │ ├── Food.tsx │ │ ├── FoodModal.tsx │ │ ├── MenuCategory.tsx │ │ └── placeholders │ │ └── FoodPlaceholder.tsx ├── hooks │ ├── useAxios.ts │ ├── useGeolocation.ts │ └── useWindowDimensions.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── categories │ │ └── [category_slug].tsx │ ├── index.tsx │ ├── lista-restaurantes.tsx │ └── restaurant │ │ └── [restaurant_slug].tsx ├── services │ └── api.ts ├── store │ ├── ducks │ │ ├── cart │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── foodModal │ │ │ ├── index.ts │ │ │ └── types.ts │ ├── index.ts │ ├── rootReducer.ts │ ├── rootSaga.ts │ └── sagas │ │ └── cart │ │ ├── addFood.ts │ │ └── index.ts ├── stories │ ├── Button.stories.tsx │ ├── Button.tsx │ ├── Header.stories.tsx │ ├── Header.tsx │ ├── Introduction.stories.mdx │ ├── Page.stories.tsx │ ├── Page.tsx │ ├── assets │ │ ├── code-brackets.svg │ │ ├── colors.svg │ │ ├── comments.svg │ │ ├── direction.svg │ │ ├── flow.svg │ │ ├── plugin.svg │ │ ├── repo.svg │ │ └── stackalt.svg │ ├── button.css │ ├── header.css │ └── page.css ├── styles │ ├── GlobalStyles.ts │ ├── components │ │ ├── Empty.ts │ │ ├── FloatingBox.ts │ │ ├── Header.ts │ │ ├── Input.ts │ │ ├── Menu.ts │ │ ├── MobileMenu.ts │ │ └── pages │ │ │ ├── Home │ │ │ ├── Carousel.ts │ │ │ ├── Categories.ts │ │ │ ├── Famous.ts │ │ │ ├── Restaurant.ts │ │ │ ├── SuggestedRestaurants.ts │ │ │ └── Voucher.ts │ │ │ └── Restaurant │ │ │ ├── Carousel.ts │ │ │ ├── Food.ts │ │ │ ├── FoodModal.ts │ │ │ └── MenuCategory.ts │ ├── pages │ │ ├── 404.ts │ │ ├── Categories.ts │ │ ├── Home.ts │ │ └── Restaurant.ts │ └── themes │ │ ├── dark.ts │ │ ├── light.ts │ │ └── styled.d.ts └── utils │ └── format.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | 2 | export const parameters = { 3 | actions: { argTypesRegex: "^on[A-Z].*" }, 4 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/babel.config.js -------------------------------------------------------------------------------- /ifood.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/ifood.gif -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/jest.config.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/server.json -------------------------------------------------------------------------------- /setupTests.js: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom/extend-expect"; 2 | -------------------------------------------------------------------------------- /src/__tests__/components/Categories.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/__tests__/components/Categories.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/hooks/useAxios.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/__tests__/hooks/useAxios.spec.ts -------------------------------------------------------------------------------- /src/__tests__/pages/Category.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/__tests__/pages/Category.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/pages/Home.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/__tests__/pages/Home.spec.tsx -------------------------------------------------------------------------------- /src/components/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/Empty.tsx -------------------------------------------------------------------------------- /src/components/FloatingBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/FloatingBox.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/Input.tsx -------------------------------------------------------------------------------- /src/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/Menu.tsx -------------------------------------------------------------------------------- /src/components/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/MobileMenu.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/Carousel.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/Categories.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Famous.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/Famous.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Restaurant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/Restaurant.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/SuggestedRestaurants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/SuggestedRestaurants.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Voucher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/Voucher.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/placeholders/CarouselPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/placeholders/CarouselPlaceholder.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/placeholders/CategoryPlaceHolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/placeholders/CategoryPlaceHolder.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/placeholders/RestaurantPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Home/placeholders/RestaurantPlaceholder.tsx -------------------------------------------------------------------------------- /src/components/pages/Restaurant/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Restaurant/Carousel.tsx -------------------------------------------------------------------------------- /src/components/pages/Restaurant/Food.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Restaurant/Food.tsx -------------------------------------------------------------------------------- /src/components/pages/Restaurant/FoodModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Restaurant/FoodModal.tsx -------------------------------------------------------------------------------- /src/components/pages/Restaurant/MenuCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Restaurant/MenuCategory.tsx -------------------------------------------------------------------------------- /src/components/pages/Restaurant/placeholders/FoodPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/components/pages/Restaurant/placeholders/FoodPlaceholder.tsx -------------------------------------------------------------------------------- /src/hooks/useAxios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/hooks/useAxios.ts -------------------------------------------------------------------------------- /src/hooks/useGeolocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/hooks/useGeolocation.ts -------------------------------------------------------------------------------- /src/hooks/useWindowDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/hooks/useWindowDimensions.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/categories/[category_slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/categories/[category_slug].tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/lista-restaurantes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/lista-restaurantes.tsx -------------------------------------------------------------------------------- /src/pages/restaurant/[restaurant_slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/pages/restaurant/[restaurant_slug].tsx -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/store/ducks/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/ducks/cart/index.ts -------------------------------------------------------------------------------- /src/store/ducks/cart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/ducks/cart/types.ts -------------------------------------------------------------------------------- /src/store/ducks/foodModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/ducks/foodModal/index.ts -------------------------------------------------------------------------------- /src/store/ducks/foodModal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/ducks/foodModal/types.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/rootReducer.ts -------------------------------------------------------------------------------- /src/store/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/rootSaga.ts -------------------------------------------------------------------------------- /src/store/sagas/cart/addFood.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/sagas/cart/addFood.ts -------------------------------------------------------------------------------- /src/store/sagas/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/store/sagas/cart/index.ts -------------------------------------------------------------------------------- /src/stories/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Button.stories.tsx -------------------------------------------------------------------------------- /src/stories/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Button.tsx -------------------------------------------------------------------------------- /src/stories/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Header.stories.tsx -------------------------------------------------------------------------------- /src/stories/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Header.tsx -------------------------------------------------------------------------------- /src/stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /src/stories/Page.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Page.stories.tsx -------------------------------------------------------------------------------- /src/stories/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/Page.tsx -------------------------------------------------------------------------------- /src/stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /src/stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/colors.svg -------------------------------------------------------------------------------- /src/stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/comments.svg -------------------------------------------------------------------------------- /src/stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/direction.svg -------------------------------------------------------------------------------- /src/stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/flow.svg -------------------------------------------------------------------------------- /src/stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/plugin.svg -------------------------------------------------------------------------------- /src/stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/repo.svg -------------------------------------------------------------------------------- /src/stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /src/stories/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/button.css -------------------------------------------------------------------------------- /src/stories/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/header.css -------------------------------------------------------------------------------- /src/stories/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/stories/page.css -------------------------------------------------------------------------------- /src/styles/GlobalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/GlobalStyles.ts -------------------------------------------------------------------------------- /src/styles/components/Empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/Empty.ts -------------------------------------------------------------------------------- /src/styles/components/FloatingBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/FloatingBox.ts -------------------------------------------------------------------------------- /src/styles/components/Header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/Header.ts -------------------------------------------------------------------------------- /src/styles/components/Input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/Input.ts -------------------------------------------------------------------------------- /src/styles/components/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/Menu.ts -------------------------------------------------------------------------------- /src/styles/components/MobileMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/MobileMenu.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Home/Carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Home/Carousel.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Home/Categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Home/Categories.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Home/Famous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Home/Famous.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Home/Restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Home/Restaurant.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Home/SuggestedRestaurants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Home/SuggestedRestaurants.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Home/Voucher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Home/Voucher.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Restaurant/Carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Restaurant/Carousel.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Restaurant/Food.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Restaurant/Food.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Restaurant/FoodModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Restaurant/FoodModal.ts -------------------------------------------------------------------------------- /src/styles/components/pages/Restaurant/MenuCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/components/pages/Restaurant/MenuCategory.ts -------------------------------------------------------------------------------- /src/styles/pages/404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/pages/404.ts -------------------------------------------------------------------------------- /src/styles/pages/Categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/pages/Categories.ts -------------------------------------------------------------------------------- /src/styles/pages/Home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/pages/Home.ts -------------------------------------------------------------------------------- /src/styles/pages/Restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/pages/Restaurant.ts -------------------------------------------------------------------------------- /src/styles/themes/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/themes/dark.ts -------------------------------------------------------------------------------- /src/styles/themes/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/themes/light.ts -------------------------------------------------------------------------------- /src/styles/themes/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/styles/themes/styled.d.ts -------------------------------------------------------------------------------- /src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/src/utils/format.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrecampll/next-ifood/HEAD/yarn.lock --------------------------------------------------------------------------------