diff --git a/src/app/carrinho/page.tsx b/src/app/carrinho/page.tsx index 91f44c7..0cd0a3b 100644 --- a/src/app/carrinho/page.tsx +++ b/src/app/carrinho/page.tsx @@ -30,22 +30,22 @@ export default function LandingPage() { { name: "Home", id: "home", - href: "/", + }, { name: "Produtos", id: "produtos", - href: "/produtos", + }, { name: "Sobre", id: "sobre", - href: "/sobre", + }, { name: "Contato", id: "contato", - href: "/contato", + }, ]} brandName="WA Distribuidora" @@ -73,6 +73,9 @@ export default function LandingPage() { title="Seu Carrinho de Compras" totalLabel="Total" emptyMessage="Seu carrinho está vazio. Adicione produtos para continuar!" + isOpen={false} + onClose={() => {}} + items={[]} /> @@ -81,6 +84,7 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} + gridVariant="four-items-2x2-equal-grid" products={[ { id: "1", @@ -89,7 +93,7 @@ export default function LandingPage() { price: "$12.50", rating: 5, reviewCount: "89", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-vegetable-salad-dark-surface_140725-88385.jpg?_wi=4", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-vegetable-salad-dark-surface_140725-88385.jpg", imageAlt: "Macarrão fresco caseiro", }, { @@ -99,7 +103,7 @@ export default function LandingPage() { price: "$25.00", rating: 4.5, reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-holding-fork_23-2149598972.jpg?_wi=3", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-holding-fork_23-2149598972.jpg", imageAlt: "Lasanha bolonhesa congelada", }, { @@ -109,7 +113,7 @@ export default function LandingPage() { price: "$15.75", rating: 4.8, reviewCount: "65", - imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-pasta_23-2150637298.jpg?_wi=3", + imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-pasta_23-2150637298.jpg", imageAlt: "Nhoque de batata tradicional", }, ]}