From 98dd061d2a0d7517afc680acdac1566a76f4968d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:50:51 +0000 Subject: [PATCH 1/2] Update src/app/cardapio/page.tsx --- src/app/cardapio/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/cardapio/page.tsx b/src/app/cardapio/page.tsx index 3fbc9ea..409bda3 100644 --- a/src/app/cardapio/page.tsx +++ b/src/app/cardapio/page.tsx @@ -43,8 +43,8 @@ export default function CardapioPage() { title="Entradas Selecionadas" description="Comece sua experiência com nossos pratos autorais." products={[ - { id: "ent-1", name: "Camarão ao Alho", price: "R$ 89,00", imageSrc: "http://img.b2bpic.net/free-photo/tiger-prawn-with-spicy-sauce-with-nice-decoration_1258-84823.jpg" }, - { id: "ent-2", name: "Salada de Frutos do Mar", price: "R$ 75,00", imageSrc: "http://img.b2bpic.net/free-photo/seafood-crab-salad-with-fresh-parmesan-crackers-greenery-inside-white-plate_114579-1799.jpg" }, + { id: "ent-1", name: "Camarão ao Alho", price: "R$ 89,00", brand: "Carioca", 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", name: "Salada de Frutos do Mar", price: "R$ 75,00", brand: "Carioca", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/seafood-crab-salad-with-fresh-parmesan-crackers-greenery-inside-white-plate_114579-1799.jpg" }, ]} /> -- 2.49.1 From 5d80162ca33025871c078d9a5836947cf48f2f29 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:50:51 +0000 Subject: [PATCH 2/2] Update src/app/sobre/page.tsx --- src/app/sobre/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/sobre/page.tsx b/src/app/sobre/page.tsx index bf6b07e..d5efde8 100644 --- a/src/app/sobre/page.tsx +++ b/src/app/sobre/page.tsx @@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TeamCardTen from '@/components/sections/team/TeamCardTen'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import { Award, Users, Info } from "lucide-react"; +import { Award, Users } from "lucide-react"; export default function SobrePage() { return ( @@ -55,6 +55,7 @@ export default function SobrePage() { sideTitle="Informações Gerais" sideDescription="Conheça os detalhes que tornam o Camarão Carioca único." faqsAnimation="blur-reveal" + useInvertedBackground={false} faqs={[ { id: "a1", title: "Acessibilidade", content: "Nosso restaurante possui rampas de acesso e banheiros adaptados para maior comodidade de todos." }, { id: "a2", title: "Opções de Serviço", content: "Atendemos com serviço de salão, reserva antecipada e opções para retirada no balcão." }, -- 2.49.1