gitextract_iqqcaevt/ ├── Diversão/ │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.css │ │ ├── App.jsx │ │ ├── components/ │ │ │ ├── BuscaProduto/ │ │ │ │ ├── BuscaProduto.component.jsx │ │ │ │ └── BuscaProduto.styled.jsx │ │ │ ├── Button/ │ │ │ │ ├── Button.component.jsx │ │ │ │ └── Button.style.jsx │ │ │ ├── CardProduto/ │ │ │ │ ├── CardProduto.component.jsx │ │ │ │ └── CardProduto.styled.jsx │ │ │ ├── Carrinho/ │ │ │ │ ├── Carrinho.component.jsx │ │ │ │ └── Carrinho.style.jsx │ │ │ ├── CarrinhoGlauton/ │ │ │ │ ├── CarrinhoGlauton.jsx │ │ │ │ └── CarrinhoGlauton.style.jsx │ │ │ ├── Checkout/ │ │ │ │ ├── CheckoutComponent.jsx │ │ │ │ └── CheckoutComponent.style.jsx │ │ │ ├── DeleteProduct/ │ │ │ │ └── DeleteProduct.jsx │ │ │ ├── Error/ │ │ │ │ ├── Index.jsx │ │ │ │ └── Style.css │ │ │ ├── Footer/ │ │ │ │ ├── Footer.jsx │ │ │ │ └── Footer.style.jsx │ │ │ ├── Header/ │ │ │ │ ├── Header.jsx │ │ │ │ ├── Header.styled.jsx │ │ │ │ └── headerCss.css │ │ │ ├── ItensCarrinho/ │ │ │ │ ├── ItensCarrinho.component.jsx │ │ │ │ └── ItensCarrinho.style.jsx │ │ │ ├── PrincipalBody/ │ │ │ │ ├── PrincipalBody.jsx │ │ │ │ └── PrincipalBody.style.jsx │ │ │ ├── Quantidade/ │ │ │ │ ├── Quantidade.component.jsx │ │ │ │ └── Quantidade.style.jsx │ │ │ ├── Resumo/ │ │ │ │ ├── Resumo.component.jsx │ │ │ │ └── Resumo.style.jsx │ │ │ └── TeamCard/ │ │ │ ├── Index.jsx │ │ │ └── Style.css │ │ ├── contexts/ │ │ │ ├── AppContext.js │ │ │ ├── AppProvider.jsx │ │ │ └── MathContext/ │ │ │ └── Math.context.jsx │ │ ├── global.style.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ ├── pages/ │ │ │ ├── PaginaDeCheckout/ │ │ │ │ └── PaginaDeCheckout.jsx │ │ │ ├── PaginaDeCompra/ │ │ │ │ ├── PaginaDeCompra.jsx │ │ │ │ └── PaginaDeCompra.style.jsx │ │ │ ├── PaginaDeErro/ │ │ │ │ └── PaginaDeErro.jsx │ │ │ ├── PaginaDeProdutos/ │ │ │ │ ├── PaginaDeProduto.styled.jsx │ │ │ │ └── PaginaDeProdutos.jsx │ │ │ ├── PaginaDoCarrinhoGlauton/ │ │ │ │ └── PaginaDoCarrinho.jsx │ │ │ ├── PaginaEasterEgg/ │ │ │ │ ├── Index.jsx │ │ │ │ └── Style.css │ │ │ ├── PaginaPrincipal/ │ │ │ │ └── PaginaPrincipal.jsx │ │ │ ├── PaginaSquad/ │ │ │ │ ├── Index.jsx │ │ │ │ └── Style.css │ │ │ └── error404/ │ │ │ ├── Index.jsx │ │ │ └── Style.css │ │ ├── server/ │ │ │ └── db.json │ │ └── services/ │ │ ├── CarrinhoService/ │ │ │ └── CarrinhoService.jsx │ │ └── ProdutosService/ │ │ └── Produtos.jsx │ └── vite.config.js └── README.md