Update src/app/page.tsx
This commit is contained in:
@@ -87,9 +87,9 @@ export default function LandingPage() {
|
|||||||
<ProductCatalog
|
<ProductCatalog
|
||||||
layout="section"
|
layout="section"
|
||||||
products={[
|
products={[
|
||||||
{ id: "1", name: "Paella de Mariscos", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-paella-dish_181624-14454.jpg" },
|
{ id: "1", name: "Paella de Mariscos", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-paella-dish_181624-14454.jpg", rating: 5 },
|
||||||
{ id: "2", name: "Langosta al Fuego", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/grilled-lobster-with-butter-garlic_1203-9963.jpg" },
|
{ id: "2", name: "Langosta al Fuego", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/grilled-lobster-with-butter-garlic_1203-9963.jpg", rating: 5 },
|
||||||
{ id: "3", name: "Ostras Frescas", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/dish-made-oysters-with-citrus-ice-cubes_23-2150320490.jpg" }
|
{ id: "3", name: "Ostras Frescas", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/dish-made-oysters-with-citrus-ice-cubes_23-2150320490.jpg", rating: 4 }
|
||||||
]}
|
]}
|
||||||
className="py-20"
|
className="py-20"
|
||||||
/>
|
/>
|
||||||
@@ -111,6 +111,7 @@ export default function LandingPage() {
|
|||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitMedia
|
<FaqSplitMedia
|
||||||
title="Preguntas Frecuentes"
|
title="Preguntas Frecuentes"
|
||||||
|
description="Todo lo que necesitas saber antes de tu visita."
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "q1", title: "¿El restaurante cuenta con estacionamiento?", content: "Sí, servicio de valet parking exclusivo." },
|
{ id: "q1", title: "¿El restaurante cuenta con estacionamiento?", content: "Sí, servicio de valet parking exclusivo." },
|
||||||
{ id: "q2", title: "¿Es necesario reservar?", content: "Altamente recomendado durante los meses de enero y febrero." }
|
{ id: "q2", title: "¿Es necesario reservar?", content: "Altamente recomendado durante los meses de enero y febrero." }
|
||||||
@@ -126,6 +127,8 @@ export default function LandingPage() {
|
|||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
names={["TripAdvisor", "Michelin Guide", "Condé Nast", "Forbes Travel"]}
|
names={["TripAdvisor", "Michelin Guide", "Condé Nast", "Forbes Travel"]}
|
||||||
title="Reconocimientos"
|
title="Reconocimientos"
|
||||||
|
description="Calidad reconocida internacionalmente."
|
||||||
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -139,6 +142,7 @@ export default function LandingPage() {
|
|||||||
{ name: "email", type: "email", placeholder: "Email de contacto" }
|
{ name: "email", type: "email", placeholder: "Email de contacto" }
|
||||||
]}
|
]}
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/romantic-table-setting-wedding-reception-with-sea-view-through-windows_637285-997.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/romantic-table-setting-wedding-reception-with-sea-view-through-windows_637285-997.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user