From a7f34f25405956b466a86f0ce6dbd596a14f65af Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:43:46 +0000 Subject: [PATCH 1/4] Update src/app/cardapio/page.tsx --- src/app/cardapio/page.tsx | 84 ++++++++------------------------------- 1 file changed, 17 insertions(+), 67 deletions(-) diff --git a/src/app/cardapio/page.tsx b/src/app/cardapio/page.tsx index 9693618..41b9dac 100644 --- a/src/app/cardapio/page.tsx +++ b/src/app/cardapio/page.tsx @@ -6,39 +6,31 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -export default function LandingPage() { +export default function CardapioPage() { return ( @@ -51,24 +43,8 @@ export default function LandingPage() { title="Entradas Selecionadas" description="Comece sua experiência com nossos pratos autorais." products={[ - { - id: "ent-1", - brand: "Clássicos", - name: "Camarão ao Alho", - price: "R$ 85", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/tiger-prawn-with-spicy-sauce-with-nice-decoration_1258-84823.jpg", - }, - { - id: "ent-2", - brand: "Sazonal", - name: "Salada de Frutos do Mar", - price: "R$ 95", - rating: 5, - reviewCount: "85", - imageSrc: "http://img.b2bpic.net/free-photo/seafood-crab-salad-with-fresh-parmesan-crackers-greenery-inside-white-plate_114579-1799.jpg", - }, + { id: "ent-1", brand: "Clássicos", name: "Camarão ao Alho", price: "R$ 85", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/tiger-prawn-with-spicy-sauce-with-nice-decoration_1258-84823.jpg" }, + { id: "ent-2", brand: "Sazonal", name: "Salada de Frutos do Mar", price: "R$ 95", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/seafood-crab-salad-with-fresh-parmesan-crackers-greenery-inside-white-plate_114579-1799.jpg" }, ]} /> @@ -76,34 +52,8 @@ export default function LandingPage() {