Merge version_1 into main #5

Merged
bender merged 1 commits from version_1 into main 2026-03-06 19:35:30 +00:00

View File

@@ -25,8 +25,6 @@ import {
Calendar,
Utensils,
Beef,
Cheese,
Steak,
} from "lucide-react";
export default function LandingPage() {
@@ -125,13 +123,13 @@ export default function LandingPage() {
title: "Pizzas al Carbón", description: "Pizzas artesanales cocinadas al carbón con ingredientes premium. Carbón 21, Pepperoni, BBQ Chicken y más.", bentoComponent: "icon-info-cards", items: [
{ icon: Flame, label: "Horno Carbón", value: "1000°C" },
{ icon: Pizza, label: "Masa Fresca", value: "Diaria" },
{ icon: Cheese, label: "Queso Premium", value: "Importado" },
{ icon: Star, label: "Queso Premium", value: "Importado" },
],
},
{
title: "Hamburguesas & Hot Dogs", description: "Burgers y hot dogs de calidad con opciones clásicas y especiales. Classic, Double Cheese, Special Burger 21 y más.", bentoComponent: "icon-info-cards", items: [
{ icon: Flame, label: "Carne 100%", value: "Angus" },
{ icon: Steak, label: "Pan Artesanal", value: "Casero" },
{ icon: Beef, label: "Pan Artesanal", value: "Casero" },
{ icon: MoreVertical, label: "Opciones", value: "12 tipos" },
],
},
@@ -168,17 +166,23 @@ export default function LandingPage() {
gridVariant="bento-grid"
products={[
{
id: "1", name: "Picaña a la Brasa", price: "₡12.000", imageSrc: "http://img.b2bpic.net/free-photo/master-chef-wearing-uniform-cooking-delicious-beef-steak-kitchen-restaurant_613910-21780.jpg", imageAlt: "Picaña a la brasa"},
id: "1", name: "Picaña a la Brasa", price: "₡12.000", imageSrc: "http://img.b2bpic.net/free-photo/master-chef-wearing-uniform-cooking-delicious-beef-steak-kitchen-restaurant_613910-21780.jpg", imageAlt: "Picaña a la brasa"
},
{
id: "2", name: "Parrillada Mixta Carbón 21", price: "₡20.000", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-basil-pan_140725-745.jpg", imageAlt: "Parrillada mixta"},
id: "2", name: "Parrillada Mixta Carbón 21", price: "₡20.000", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-basil-pan_140725-745.jpg", imageAlt: "Parrillada mixta"
},
{
id: "3", name: "Pizza Carbón 21", price: "₡10.000", imageSrc: "http://img.b2bpic.net/free-photo/friends-party-with-delicious-pizza_23-2151309425.jpg", imageAlt: "Pizza al carbón"},
id: "3", name: "Pizza Carbón 21", price: "₡10.000", imageSrc: "http://img.b2bpic.net/free-photo/friends-party-with-delicious-pizza_23-2151309425.jpg", imageAlt: "Pizza al carbón"
},
{
id: "4", name: "Ceviche Mixto", price: "₡6.500", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-mixed-seafood-thick-soup-hot-pot-spicy-thai-food_1150-26554.jpg", imageAlt: "Ceviche mixto fresco"},
id: "4", name: "Ceviche Mixto", price: "₡6.500", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-mixed-seafood-thick-soup-hot-pot-spicy-thai-food_1150-26554.jpg", imageAlt: "Ceviche mixto fresco"
},
{
id: "5", name: "Special Burger 21", price: "₡6.500", imageSrc: "http://img.b2bpic.net/free-photo/delicious-burgers-wooden-board-arrangement_23-2149897394.jpg", imageAlt: "Hamburguesa especial"},
id: "5", name: "Special Burger 21", price: "₡6.500", imageSrc: "http://img.b2bpic.net/free-photo/delicious-burgers-wooden-board-arrangement_23-2149897394.jpg", imageAlt: "Hamburguesa especial"
},
{
id: "6", name: "Camarones al Ajillo", price: "₡6.500", imageSrc: "http://img.b2bpic.net/free-photo/friends-party-with-delicious-pizza_23-2151309425.jpg", imageAlt: "Camarones al ajillo"},
id: "6", name: "Camarones al Ajillo", price: "₡6.500", imageSrc: "http://img.b2bpic.net/free-photo/friends-party-with-delicious-pizza_23-2151309425.jpg", imageAlt: "Camarones al ajillo"
},
]}
containerClassName="featured-products"
cardClassName="featured-card"
@@ -192,13 +196,17 @@ export default function LandingPage() {
author="Jorge Martínez, Cliente Satisfecho"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135471.jpg", alt: "Cliente 1"},
src: "http://img.b2bpic.net/free-photo/portrait-attractive-caucasian-smiling-woman_93675-135471.jpg", alt: "Cliente 1"
},
{
src: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg", alt: "Cliente 2"},
src: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg", alt: "Cliente 2"
},
{
src: "http://img.b2bpic.net/free-photo/confident-businessman-smiling-outside-office-building_107420-74332.jpg", alt: "Cliente 3"},
src: "http://img.b2bpic.net/free-photo/confident-businessman-smiling-outside-office-building_107420-74332.jpg", alt: "Cliente 3"
},
{
src: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg", alt: "Cliente 4"},
src: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg", alt: "Cliente 4"
},
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
@@ -217,9 +225,11 @@ export default function LandingPage() {
description="Carbón 21 está ubicado en el corazón de Barva. Ven a disfrutar de la mejor experiencia gastronómica al carbón."
buttons={[
{
text: "📍 Abrir en Google Maps", href: "https://maps.google.com/?q=Barva,Heredia"},
text: "📍 Abrir en Google Maps", href: "https://maps.google.com/?q=Barva,Heredia"
},
{
text: "📞 Llamar (7116 9128)", href: "tel:+50671169128"},
text: "📞 Llamar (7116 9128)", href: "tel:+50671169128"
},
]}
buttonAnimation="blur-reveal"
background={{ variant: "plain" }}
@@ -238,9 +248,11 @@ export default function LandingPage() {
description="¿Planeas una comida especial? Reserva tu mesa ahora. Llama al 7116 9128 o completa el formulario para garantizar tu lugar."
buttons={[
{
text: "📞 Llamar para Reservar", href: "tel:+50671169128"},
text: "📞 Llamar para Reservar", href: "tel:+50671169128"
},
{
text: "💬 WhatsApp", href: "https://wa.me/50671169128"},
text: "💬 WhatsApp", href: "https://wa.me/50671169128"
},
]}
buttonAnimation="blur-reveal"
background={{ variant: "animated-grid" }}
@@ -276,9 +288,11 @@ export default function LandingPage() {
{ label: "📞 Llamar", href: "tel:+50671169128" },
{ label: "💬 WhatsApp", href: "https://wa.me/50671169128" },
{
label: "📍 Barva, Heredia", href: "https://maps.google.com/?q=Barva,Heredia"},
label: "📍 Barva, Heredia", href: "https://maps.google.com/?q=Barva,Heredia"
},
{
label: "Abrir Mapa", href: "https://maps.google.com/?q=Barva,Heredia"},
label: "Abrir Mapa", href: "https://maps.google.com/?q=Barva,Heredia"
},
],
},
]}