diff --git a/src/app/page.tsx b/src/app/page.tsx
index c4cfb6e..1d3510a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,86 +29,38 @@ export default function LandingPage() {
@@ -120,42 +72,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "p1",
- name: "Pizza Calabresa",
- price: "R$ 65,00",
- imageSrc: "http://img.b2bpic.net/free-photo/tasty-italian-pizza-with-fresh-ingredients-utensils-front-wooden-wall_23-2148076226.jpg",
- },
- {
- id: "p2",
- name: "Pizza Marguerita",
- price: "R$ 60,00",
- imageSrc: "http://img.b2bpic.net/free-photo/cheese-pizza-wooden-table-close-up_1232-1147.jpg",
- },
- {
- id: "p3",
- name: "Pizza de Frango c/ Catupiry",
- price: "R$ 70,00",
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicilous-pizza-wooden-table_23-2148305649.jpg",
- },
- {
- id: "d1",
- name: "Refrigerante 2L",
- price: "R$ 15,00",
- imageSrc: "http://img.b2bpic.net/free-photo/iced-tea-with-lime-ice_114579-7151.jpg",
- },
- {
- id: "d2",
- name: "Suco Natural",
- price: "R$ 12,00",
- imageSrc: "http://img.b2bpic.net/free-photo/freshly-squeezed-juice-glass-fresh-fruit-kitchen-table_169016-49603.jpg",
- },
- {
- id: "c1",
- name: "Combo Família (Pizza + Refri)",
- price: "R$ 85,00",
- imageSrc: "http://img.b2bpic.net/free-photo/friends-party-with-delicious-pizza_23-2151309400.jpg",
- },
+ { id: "p1", name: "Pizza Calabresa", price: "R$ 65,00", imageSrc: "http://img.b2bpic.net/free-photo/tasty-italian-pizza-with-fresh-ingredients-utensils-front-wooden-wall_23-2148076226.jpg" },
+ { id: "p2", name: "Pizza Marguerita", price: "R$ 60,00", imageSrc: "http://img.b2bpic.net/free-photo/cheese-pizza-wooden-table-close-up_1232-1147.jpg" },
+ { id: "p3", name: "Pizza de Frango c/ Catupiry", price: "R$ 70,00", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicilous-pizza-wooden-table_23-2148305649.jpg" },
+ { id: "d1", name: "Refrigerante 2L", price: "R$ 15,00", imageSrc: "http://img.b2bpic.net/free-photo/iced-tea-with-lime-ice_114579-7151.jpg" },
+ { id: "d2", name: "Suco Natural", price: "R$ 12,00", imageSrc: "http://img.b2bpic.net/free-photo/freshly-squeezed-juice-glass-fresh-fruit-kitchen-table_169016-49603.jpg" },
+ { id: "c1", name: "Combo Família (Pizza + Refri)", price: "R$ 85,00", imageSrc: "http://img.b2bpic.net/free-photo/friends-party-with-delicious-pizza_23-2151309400.jpg" }
]}
title="Cardápio Irresistível"
description="Escolha sua favorita e peça com apenas um clique."
@@ -167,21 +89,9 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Nossa História e Compromisso"
metrics={[
- {
- icon: Pizza,
- label: "Pizzas Vendidas",
- value: "15.000+",
- },
- {
- icon: Heart,
- label: "Clientes Felizes",
- value: "99%",
- },
- {
- icon: Clock,
- label: "Anos de Tradição",
- value: "10",
- },
+ { icon: Pizza, label: "Pizzas Vendidas", value: "15.000+" },
+ { icon: Heart, label: "Clientes Felizes", value: "99%" },
+ { icon: Clock, label: "Anos de Tradição", value: "10" }
]}
metricsAnimation="slide-up"
/>
@@ -194,11 +104,7 @@ export default function LandingPage() {
title="Nossos Parceiros e Fornecedores"
description="Qualidade garantida através de parceiros locais."
names={[
- "Fornecedor de Queijos",
- "Produtor de Tomates",
- "Distribuidora de Bebidas",
- "Empacotadora Ecológica",
- "Marketing Local",
+ "Fornecedor de Queijos", "Produtor de Tomates", "Distribuidora de Bebidas", "Empacotadora Ecológica", "Marketing Local"
]}
/>
@@ -209,24 +115,10 @@ export default function LandingPage() {
title="Fale Conosco"
description="Estamos localizados na Ponta da Praia. Venha nos visitar ou faça seu pedido por WhatsApp."
inputs={[
- {
- name: "nome",
- type: "text",
- placeholder: "Seu Nome",
- required: true,
- },
- {
- name: "email",
- type: "email",
- placeholder: "Seu E-mail",
- required: true,
- },
+ { name: "nome", type: "text", placeholder: "Seu Nome", required: true },
+ { name: "email", type: "email", placeholder: "Seu E-mail", required: true }
]}
- textarea={{
- name: "mensagem",
- placeholder: "Sua mensagem ou pedido",
- rows: 4,
- }}
+ textarea={{ name: "mensagem", placeholder: "Sua mensagem ou pedido", rows: 4 }}
imageSrc="http://img.b2bpic.net/free-photo/happy-friends-front-bar_23-2147680611.jpg"
mediaAnimation="slide-up"
/>
@@ -235,42 +127,9 @@ export default function LandingPage() {