Update src/app/catalogo/page.tsx

This commit is contained in:
2026-04-22 18:00:16 +00:00
parent 2957eca37d
commit 42149edcc8

View File

@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Início",
id: "/",
},
{
name: "Catálogo",
id: "/catalogo",
},
{
name: "Sobre",
id: "/sobre",
},
{
name: "Assinatura",
id: "/clube",
},
{ name: "Início", id: "/" },
{ name: "Catálogo", id: "/catalogo" },
{ name: "Sobre", id: "/sobre" },
{ name: "Assinatura", id: "/clube" },
]}
brandName="Grão Nobre"
/>
@@ -52,37 +40,14 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
title="Dicas e Receitas"
description="Aprenda técnicas e curiosidades sobre o mundo do café especial."
blogs={[
{
id: "b1",
category: "Dicas",
title: "Como preparar V60",
excerpt: "Dicas para o café perfeito.",
imageSrc: "http://img.b2bpic.net/free-photo/tool-used-coffee-machine-coffee-making-process_23-2150187530.jpg",
authorName: "Mestre Torra",
authorAvatar: "http://img.b2bpic.net/free-photo/pleased-handsome-man-puts-hand-chest-holding-cup-isolated-orange-wall_141793-68576.jpg",
date: "10/05/2024",
},
id: "b1", category: "Dicas", title: "Como preparar V60", excerpt: "Dicas para o café perfeito.", imageSrc: "http://img.b2bpic.net/free-photo/tool-used-coffee-machine-coffee-making-process_23-2150187530.jpg", authorName: "Mestre Torra", authorAvatar: "http://img.b2bpic.net/free-photo/pleased-handsome-man-puts-hand-chest-holding-cup-isolated-orange-wall_141793-68576.jpg", date: "10/05/2024"},
{
id: "b2",
category: "Receitas",
title: "Cold Brew Caseiro",
excerpt: "Refrescância para dias quentes.",
imageSrc: "http://img.b2bpic.net/free-photo/brutal-barista-black-sweatshot-thick-wooden-table-dries-clean-blank-white-transparent-coffee-tea-whiskey-cups-glasses-with-turqouise-microfiber-cloth-cafe-shop_346278-485.jpg",
authorName: "Mestre Torra",
authorAvatar: "http://img.b2bpic.net/free-photo/man-smiling-posing-with-coffee-cup_23-2148366705.jpg",
date: "12/05/2024",
},
id: "b2", category: "Receitas", title: "Cold Brew Caseiro", excerpt: "Refrescância para dias quentes.", imageSrc: "http://img.b2bpic.net/free-photo/brutal-barista-black-sweatshot-thick-wooden-table-dries-clean-blank-white-transparent-coffee-tea-whiskey-cups-glasses-with-turqouise-microfiber-cloth-cafe-shop_346278-485.jpg", authorName: "Mestre Torra", authorAvatar: "http://img.b2bpic.net/free-photo/man-smiling-posing-with-coffee-cup_23-2148366705.jpg", date: "12/05/2024"},
{
id: "b3",
category: "Dicas",
title: "Entenda a Torra",
excerpt: "Do claro ao escuro.",
imageSrc: "http://img.b2bpic.net/free-photo/male-barista-brewing-coffee-alternative-method-pour_176420-14719.jpg",
authorName: "Mestre Torra",
authorAvatar: "http://img.b2bpic.net/free-photo/middle-age-hispanic-man-holding-italian-coffee-maker-smiling-with-happy-cool-smile-face-showing-teeth_839833-25295.jpg",
date: "15/05/2024",
},
id: "b3", category: "Dicas", title: "Entenda a Torra", excerpt: "Do claro ao escuro.", imageSrc: "http://img.b2bpic.net/free-photo/male-barista-brewing-coffee-alternative-method-pour_176420-14719.jpg", authorName: "Mestre Torra", authorAvatar: "http://img.b2bpic.net/free-photo/middle-age-hispanic-man-holding-italian-coffee-maker-smiling-with-happy-cool-smile-face-showing-teeth_839833-25295.jpg", date: "15/05/2024"},
]}
/>
</div>
@@ -92,23 +57,12 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{
id: "f1",
title: "Como escolher a torra?",
content: "Depende do seu gosto pessoal...",
},
{
id: "f2",
title: "Como funciona o clube?",
content: "Mensal ou trimestral...",
},
{
id: "f3",
title: "Qual a validade?",
content: "Consumir em até 30 dias...",
},
{ id: "f1", title: "Como escolher a torra?", content: "Depende do seu gosto pessoal..." },
{ id: "f2", title: "Como funciona o clube?", content: "Mensal ou trimestral..." },
{ id: "f3", title: "Qual a validade?", content: "Consumir em até 30 dias..." },
]}
title="Dúvidas Frequentes"
description="Respostas rápidas para as suas questões sobre nosso café e serviços."
faqsAnimation="slide-up"
/>
</div>
@@ -117,32 +71,8 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Grão Nobre"
columns={[
{
title: "Loja",
items: [
{
label: "Catálogo",
href: "/catalogo",
},
{
label: "Assinatura",
href: "/clube",
},
],
},
{
title: "Empresa",
items: [
{
label: "Sobre Nós",
href: "/sobre",
},
{
label: "Blog",
href: "#",
},
],
},
{ title: "Loja", items: [{ label: "Catálogo", href: "/catalogo" }, { label: "Assinatura", href: "/clube" }] },
{ title: "Empresa", items: [{ label: "Sobre Nós", href: "/sobre" }, { label: "Blog", href: "#" }] },
]}
/>
</div>