Merge version_1 into main #1
@@ -90,21 +90,21 @@ export default function ContactPage() {
|
||||
id: 1,
|
||||
title: "Nuestra Ubicación",
|
||||
description: "Calle Principal 456, Valle Dorado. Estacionamiento disponible. Acceso fácil desde la avenida principal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg?_wi=3",
|
||||
imageAlt: "Ubicación de Black Fish",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Horarios de Atención",
|
||||
description: "Lunes a Domingo: 12:00 PM - 10:30 PM. Última orden: 9:45 PM. Cerrado únicamente en Navidad y Año Nuevo.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg?_wi=4",
|
||||
imageAlt: "Horarios",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Canales de Comunicación",
|
||||
description: "Teléfono: +1 (234) 567-8900 | WhatsApp: +1 (234) 567-8900 | Email: info@blackfish.com | Instagram: @blackfishtostaderia",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg?_wi=4",
|
||||
imageAlt: "Contacto",
|
||||
},
|
||||
]}
|
||||
@@ -127,7 +127,7 @@ export default function ContactPage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-baker-flouring-table-bake-make-delicious-cookies-retired-senior-chef-with-bonete-apron-uniform-sprinkling-sieving-sifting-raw-ingredients-by-hand-baking-homemade-pizza-bread_482257-14397.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-baker-flouring-table-bake-make-delicious-cookies-retired-senior-chef-with-bonete-apron-uniform-sprinkling-sieving-sifting-raw-ingredients-by-hand-baking-homemade-pizza-bread_482257-14397.jpg?_wi=3"
|
||||
imageAlt="Chef preparando"
|
||||
faqsAnimation="slide-up"
|
||||
showCard={true}
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Black Fish — Tostadería y Cevichería en Valle Dorado | Aguachile Negro",
|
||||
description: "Disfruta de aguachiles, tostadas y tacos de mariscos frescos en Black Fish. Reserva o pide en línea. Calidad y sabor único.",
|
||||
keywords: "tostadería, cevichería, mariscos, aguachile negro, tostada tuna mango, tacos de pescado, ceviches frescos, Valle Dorado, restaurante, pedidos en línea, reservaciones",
|
||||
metadataBase: new URL("https://blackfish.com"),
|
||||
alternates: {
|
||||
canonical: "https://blackfish.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Black Fish — Tostadas & Ceviches que enamoran",
|
||||
description: "Aguachile negro, tuna-mango y tacos capeados: frescura diaria y sabor que invita a repetir.",
|
||||
url: "https://blackfish.com",
|
||||
siteName: "Black Fish",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg",
|
||||
alt: "Aguachile Negro — Plato estrella de Black Fish",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Black Fish — Tostadería y Cevichería",
|
||||
description: "Mariscos frescos, recetas únicas y sabor que invita a repetir.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -94,27 +94,27 @@ export default function MenuPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pancakes-with-fruits-white-background-sweet-cake-dessert-fruit-tea-pancake_140725-96634.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pancakes-with-fruits-white-background-sweet-cake-dessert-fruit-tea-pancake_140725-96634.jpg?_wi=2",
|
||||
imageAlt: "Variedad de tostadas crujientes",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoked-salmon-with-fresh-salad_1258-193.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoked-salmon-with-fresh-salad_1258-193.jpg?_wi=2",
|
||||
imageAlt: "Ceviches y aguachiles frescos",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tortillas-defocused-background_23-2148224177.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tortillas-defocused-background_23-2148224177.jpg?_wi=2",
|
||||
imageAlt: "Tacos capeados de pescado",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tortillas-with-meat-vegetables_23-2148614366.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tortillas-with-meat-vegetables_23-2148614366.jpg?_wi=2",
|
||||
imageAlt: "Combo promocional viernes",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg?_wi=2",
|
||||
imageAlt: "Platos frescos variados",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg?_wi=2",
|
||||
imageAlt: "Tacos artesanales",
|
||||
},
|
||||
]}
|
||||
@@ -139,7 +139,7 @@ export default function MenuPage() {
|
||||
category: "Tostadas",
|
||||
title: "Tostadas Crujientes & Clásicas",
|
||||
excerpt: "Base de maíz tostado artesanal con toppings frescos. Aguachile negro, tuna-mango, camarones, atún y opciones vegetarianas. Cada tostada es un equilibrio entre crujiente y fresco.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pancakes-with-fruits-white-background-sweet-cake-dessert-fruit-tea-pancake_140725-96634.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pancakes-with-fruits-white-background-sweet-cake-dessert-fruit-tea-pancake_140725-96634.jpg?_wi=3",
|
||||
imageAlt: "Variedad de tostadas crujientes",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -150,7 +150,7 @@ export default function MenuPage() {
|
||||
category: "Ceviches & Aguachiles",
|
||||
title: "Ceviches Frescos & Aguachiles Únicos",
|
||||
excerpt: "Mariscos frescos marinados en cítricos y salsas especiales. Aguachile negro con salsa cítrica oscura, maracuyá frutal, mix de mariscos y variantes locales creadas por nuestros chefs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoked-salmon-with-fresh-salad_1258-193.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoked-salmon-with-fresh-salad_1258-193.jpg?_wi=3",
|
||||
imageAlt: "Ceviches y aguachiles frescos",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -161,7 +161,7 @@ export default function MenuPage() {
|
||||
category: "Tacos Capeados",
|
||||
title: "Tacos Capeados de Pescado Frito",
|
||||
excerpt: "Pescado fresco frito en tortilla crocante. Col morada, salsa especial, limón y complementos. Tres piezas por orden. Sabor auténtico con técnica de fritura perfecta.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tortillas-defocused-background_23-2148224177.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tortillas-defocused-background_23-2148224177.jpg?_wi=3",
|
||||
imageAlt: "Tacos capeados de pescado",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -172,7 +172,7 @@ export default function MenuPage() {
|
||||
category: "Combos & Promociones",
|
||||
title: "Combos Exclusivos & Ofertas Especiales",
|
||||
excerpt: "2 tacos capeados + bebida por $99. Combos viernes, paquetes de grupo y ofertas nocturnas. Perfecto para lunch, merienda o cena en pareja o grupo.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tortillas-with-meat-vegetables_23-2148614366.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tortillas-with-meat-vegetables_23-2148614366.jpg?_wi=3",
|
||||
imageAlt: "Combo promocional viernes",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -198,28 +198,28 @@ export default function MenuPage() {
|
||||
id: "aguachile-negro-menu",
|
||||
name: "Aguachile Negro",
|
||||
price: "$140",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-arrangement_23-2148510950.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-arrangement_23-2148510950.jpg?_wi=2",
|
||||
imageAlt: "Aguachile Negro con camarón fresco",
|
||||
},
|
||||
{
|
||||
id: "tuna-mango-menu",
|
||||
name: "Tostada Tuna-Mango",
|
||||
price: "$125",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143262.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143262.jpg?_wi=2",
|
||||
imageAlt: "Tostada con atún y mango fresco",
|
||||
},
|
||||
{
|
||||
id: "tacos-capeados-menu",
|
||||
name: "Tacos Capeados (3 pzas)",
|
||||
price: "$110",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tacos-with-vegetables-meat_23-2148750433.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tacos-with-vegetables-meat_23-2148750433.jpg?_wi=2",
|
||||
imageAlt: "Tacos capeados de pescado con col morada",
|
||||
},
|
||||
{
|
||||
id: "ceviche-maracuya-menu",
|
||||
name: "Ceviche Maracuyá Mix",
|
||||
price: "$135",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-salmon-avocado_1203-7459.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-salmon-avocado_1203-7459.jpg?_wi=2",
|
||||
imageAlt: "Ceviche mix de mariscos con maracuyá",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -98,15 +98,15 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg?_wi=1",
|
||||
imageAlt: "Aguachile Negro — Camarón fresco con salsa cítrica negra",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg?_wi=1",
|
||||
imageAlt: "Tostada Tuna-Mango — Atún marinado con mango fresco",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg?_wi=1",
|
||||
imageAlt: "Tacos Capeados de Pescado — Tortilla crocante y pescado frito",
|
||||
},
|
||||
{
|
||||
@@ -179,28 +179,28 @@ export default function HomePage() {
|
||||
id: "aguachile-negro",
|
||||
name: "Aguachile Negro",
|
||||
price: "$140",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-arrangement_23-2148510950.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-arrangement_23-2148510950.jpg?_wi=1",
|
||||
imageAlt: "Aguachile Negro con camarón fresco",
|
||||
},
|
||||
{
|
||||
id: "tuna-mango",
|
||||
name: "Tostada Tuna-Mango",
|
||||
price: "$125",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143262.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-white-tuna-recipe-still-life_23-2151143262.jpg?_wi=1",
|
||||
imageAlt: "Tostada con atún y mango fresco",
|
||||
},
|
||||
{
|
||||
id: "tacos-capeados",
|
||||
name: "Tacos Capeados",
|
||||
price: "$110",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tacos-with-vegetables-meat_23-2148750433.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tacos-with-vegetables-meat_23-2148750433.jpg?_wi=1",
|
||||
imageAlt: "Tacos capeados de pescado con col morada",
|
||||
},
|
||||
{
|
||||
id: "ceviche-maracuya",
|
||||
name: "Ceviche Maracuyá",
|
||||
price: "$135",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-salmon-avocado_1203-7459.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-salmon-avocado_1203-7459.jpg?_wi=1",
|
||||
imageAlt: "Ceviche mix de mariscos con maracuyá",
|
||||
},
|
||||
]}
|
||||
@@ -290,7 +290,7 @@ export default function HomePage() {
|
||||
category: "Tostadas",
|
||||
title: "Tostadas Crujientes",
|
||||
excerpt: "Base de maíz tostado artesanal con toppings frescos. Aguachile negro, tuna-mango y opciones vegetarianas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pancakes-with-fruits-white-background-sweet-cake-dessert-fruit-tea-pancake_140725-96634.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pancakes-with-fruits-white-background-sweet-cake-dessert-fruit-tea-pancake_140725-96634.jpg?_wi=1",
|
||||
imageAlt: "Variedad de tostadas crujientes",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -301,7 +301,7 @@ export default function HomePage() {
|
||||
category: "Ceviches",
|
||||
title: "Ceviches & Aguachiles",
|
||||
excerpt: "Mariscal fresco marinado en cítricos. Aguachile negro (salsa negra cítrica), maracuyá y variantes locales.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoked-salmon-with-fresh-salad_1258-193.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoked-salmon-with-fresh-salad_1258-193.jpg?_wi=1",
|
||||
imageAlt: "Ceviches y aguachiles frescos",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -312,7 +312,7 @@ export default function HomePage() {
|
||||
category: "Tacos",
|
||||
title: "Tacos Capeados",
|
||||
excerpt: "Pescado frito en tortilla crocante. Col morada, salsa especial y limón. Tres piezas con servicio de salsas complementarias.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tortillas-defocused-background_23-2148224177.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tortillas-defocused-background_23-2148224177.jpg?_wi=1",
|
||||
imageAlt: "Tacos capeados de pescado",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -323,7 +323,7 @@ export default function HomePage() {
|
||||
category: "Combos & Promos",
|
||||
title: "Combos del Viernes",
|
||||
excerpt: "2 tacos capeados + bebida por $99. Opciones limitadas. Perfecto para lunch o merienda en pareja.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tortillas-with-meat-vegetables_23-2148614366.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tortillas-with-meat-vegetables_23-2148614366.jpg?_wi=1",
|
||||
imageAlt: "Combo promocional viernes",
|
||||
authorName: "Chef Black Fish",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/chef-cooking-recipe_23-2148145538.jpg",
|
||||
@@ -344,7 +344,7 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-baker-flouring-table-bake-make-delicious-cookies-retired-senior-chef-with-bonete-apron-uniform-sprinkling-sieving-sifting-raw-ingredients-by-hand-baking-homemade-pizza-bread_482257-14397.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-baker-flouring-table-bake-make-delicious-cookies-retired-senior-chef-with-bonete-apron-uniform-sprinkling-sieving-sifting-raw-ingredients-by-hand-baking-homemade-pizza-bread_482257-14397.jpg?_wi=1"
|
||||
imageAlt="Chef preparando platos en la cocina"
|
||||
faqsAnimation="slide-up"
|
||||
showCard={true}
|
||||
|
||||
@@ -90,21 +90,21 @@ export default function ReservationsPage() {
|
||||
id: 1,
|
||||
title: "Llamada Directa",
|
||||
description: "Llámanos al +1 (234) 567-8900. Disponibles de 12:00 PM a 10:00 PM todos los días.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-cleaning-shrimp-kitchen_23-2150238993.jpg?_wi=2",
|
||||
imageAlt: "Teléfono de reservaciones",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "WhatsApp Directo",
|
||||
description: "Envía un mensaje a nuestro WhatsApp. Respuesta inmediata, confirmación en menos de 1 hora.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-close-view-bowl-vegetable-salad-right-side-with-bowls-vegetables-side-dark-green-background_140725-133551.jpg?_wi=3",
|
||||
imageAlt: "WhatsApp reservaciones",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Formulario en Línea",
|
||||
description: "Completa nuestro formulario de reservas en el sitio. Confirmación por email en 2-4 horas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-tacos-arrangement_23-2150799483.jpg?_wi=3",
|
||||
imageAlt: "Formulario de reservas",
|
||||
},
|
||||
]}
|
||||
@@ -127,7 +127,7 @@ export default function ReservationsPage() {
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-baker-flouring-table-bake-make-delicious-cookies-retired-senior-chef-with-bonete-apron-uniform-sprinkling-sieving-sifting-raw-ingredients-by-hand-baking-homemade-pizza-bread_482257-14397.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-baker-flouring-table-bake-make-delicious-cookies-retired-senior-chef-with-bonete-apron-uniform-sprinkling-sieving-sifting-raw-ingredients-by-hand-baking-homemade-pizza-bread_482257-14397.jpg?_wi=2"
|
||||
imageAlt="Chef preparando en la cocina"
|
||||
faqsAnimation="slide-up"
|
||||
showCard={true}
|
||||
|
||||
Reference in New Issue
Block a user