Merge version_1 into main #2
328
src/app/page.tsx
328
src/app/page.tsx
@@ -31,110 +31,46 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "La Experiencia",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menú",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Eventos",
|
||||
id: "events",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "La Experiencia", id: "about" },
|
||||
{ name: "Menú", id: "menu" },
|
||||
{ name: "Eventos", id: "events" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="El Campito"
|
||||
button={{
|
||||
text: "Reservar mesa",
|
||||
href: "#contact",
|
||||
}}
|
||||
button={{ text: "Reservar mesa", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Donde la Gastronomía Encuentra la Noche"
|
||||
description="El Campito Restó Bar. La esencia de Florencio Varela. Sabores, cócteles y momentos que se transforman en leyendas."
|
||||
kpis={[
|
||||
{
|
||||
value: "4.4+",
|
||||
label: "Calificación",
|
||||
},
|
||||
{
|
||||
value: "450+",
|
||||
label: "Opiniones",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Experiencia",
|
||||
},
|
||||
{ value: "4.4+", label: "Calificación" },
|
||||
{ value: "450+", label: "Opiniones" },
|
||||
{ value: "24/7", label: "Experiencia" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Reservar mesa",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/glass-bowl-coctail-places-candle-holder_140725-6013.jpg?_wi=1"
|
||||
buttons={[{ text: "Reservar mesa", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/glass-bowl-coctail-places-candle-holder_140725-6013.jpg"
|
||||
imageAlt="Ambiente premium El Campito Restó Bar"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/still-life-cocktail-tablecloth_23-2151318445.jpg",
|
||||
alt: "Cliente feliz 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/waiter-serving-woman-with-glass-cocktail-garnished-with-burning-clothespin_140725-5267.jpg",
|
||||
alt: "Cliente feliz 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/still-life-cocktail-tablecloth_23-2151318368.jpg",
|
||||
alt: "Cliente feliz 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/still-life-cocktail-tablecloth_23-2151318412.jpg",
|
||||
alt: "Cliente feliz 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211471.jpg",
|
||||
alt: "Cliente feliz 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/still-life-cocktail-tablecloth_23-2151318445.jpg", alt: "Cliente feliz 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/waiter-serving-woman-with-glass-cocktail-garnished-with-burning-clothespin_140725-5267.jpg", alt: "Cliente feliz 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/still-life-cocktail-tablecloth_23-2151318368.jpg", alt: "Cliente feliz 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/still-life-cocktail-tablecloth_23-2151318412.jpg", alt: "Cliente feliz 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211471.jpg", alt: "Cliente feliz 5" },
|
||||
]}
|
||||
avatarText="Más de 500 clientes nos eligen"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Cena Gourmet",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Coctelería de Autor",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Eventos Exclusivos",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Música en Vivo",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Experiencia Premium",
|
||||
},
|
||||
{ type: "text", text: "Cena Gourmet" },
|
||||
{ type: "text", text: "Coctelería de Autor" },
|
||||
{ type: "text", text: "Eventos Exclusivos" },
|
||||
{ type: "text", text: "Música en Vivo" },
|
||||
{ type: "text", text: "Experiencia Premium" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -144,13 +80,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Mucho más que una cena"
|
||||
description="En El Campito, fusionamos la cultura culinaria con la pasión de nuestra gente. Ya sea un cumpleaños, un encuentro entre amigos o esa noche especial donde el fútbol y la buena música se encuentran, somos el corazón de Florencio Varela."
|
||||
buttons={[
|
||||
{
|
||||
text: "Ver Eventos",
|
||||
href: "#events",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/various-dessert-glass-white-wine_140725-4306.jpg?_wi=1"
|
||||
buttons={[{ text: "Ver Eventos", href: "#events" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/various-dessert-glass-white-wine_140725-4306.jpg"
|
||||
imageAlt="Ambiente nocturno en El Campito"
|
||||
/>
|
||||
</div>
|
||||
@@ -162,55 +93,25 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Cumpleaños Únicos",
|
||||
description: "Menús personalizados y ambiente festivo exclusivo.",
|
||||
icon: Star,
|
||||
title: "Cumpleaños Únicos", description: "Menús personalizados y ambiente festivo exclusivo.", icon: Star,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mix-nuts-figs-plate_23-2148352341.jpg",
|
||||
imageAlt: "Evento cumpleaños",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clear-wine-glass-brown-wooden-table_209848-77.jpg",
|
||||
imageAlt: "Cocktail cumpleaños",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-bowl-coctail-places-candle-holder_140725-6013.jpg?_wi=2",
|
||||
imageAlt: "gourmet artisan food dark lighting",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-mix-nuts-figs-plate_23-2148352341.jpg", imageAlt: "Evento cumpleaños" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/clear-wine-glass-brown-wooden-table_209848-77.jpg", imageAlt: "Cocktail cumpleaños" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Cultura y Pasión",
|
||||
description: "Viví cada partido y evento deportivo en nuestras pantallas gigantes.",
|
||||
icon: Trophy,
|
||||
title: "Cultura y Pasión", description: "Viví cada partido y evento deportivo en nuestras pantallas gigantes.", icon: Trophy,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-content-friends-chatting-drinking-beer_1262-3656.jpg",
|
||||
imageAlt: "Fanáticos",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-salmon-bowls-table-arrangement_23-2150427653.jpg",
|
||||
imageAlt: "Barra",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-dessert-glass-white-wine_140725-4306.jpg?_wi=2",
|
||||
imageAlt: "gourmet artisan food dark lighting",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/three-content-friends-chatting-drinking-beer_1262-3656.jpg", imageAlt: "Fanáticos" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-salmon-bowls-table-arrangement_23-2150427653.jpg", imageAlt: "Barra" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Noches Temáticas",
|
||||
description: "DJs en vivo y propuestas gastronómicas que cambian con la semana.",
|
||||
icon: Music,
|
||||
title: "Noches Temáticas", description: "DJs en vivo y propuestas gastronómicas que cambian con la semana.", icon: Music,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg",
|
||||
imageAlt: "DJ",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10718.jpg",
|
||||
imageAlt: "Noche música",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-catches-attention-his-friend_329181-18378.jpg?_wi=1",
|
||||
imageAlt: "gourmet artisan food dark lighting",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg", imageAlt: "DJ" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10718.jpg", imageAlt: "Noche música" },
|
||||
]
|
||||
},
|
||||
]}
|
||||
title="Tu Evento, Nuestra Pasión"
|
||||
@@ -223,46 +124,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Increíble",
|
||||
quote: "La comida es excelente y el ambiente de diez.",
|
||||
name: "Lucía Martínez",
|
||||
role: "Cliente frecuente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-catches-attention-his-friend_329181-18378.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "El mejor bar",
|
||||
quote: "Los cócteles son de otro nivel.",
|
||||
name: "Carlos Gomez",
|
||||
role: "Habitual",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-black-woman-smile-camera_197531-33139.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Festejé mi cumple",
|
||||
quote: "La pasamos bárbaro. Todo salió organizado.",
|
||||
name: "Sofia Rossi",
|
||||
role: "Cumpleañera",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-posing-together_23-2148965391.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Top",
|
||||
quote: "La decoración y la música hacen que sea único.",
|
||||
name: "Javier Lopez",
|
||||
role: "Amante del restobar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bartender-cleaning-bar-counter_107420-65849.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Calidad",
|
||||
quote: "Muy buena carta, variedad para picar.",
|
||||
name: "Marta Diaz",
|
||||
role: "Clienta",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244688.jpg",
|
||||
},
|
||||
{ id: "1", title: "Increíble", quote: "La comida es excelente y el ambiente de diez.", name: "Lucía Martínez", role: "Cliente frecuente", imageSrc: "http://img.b2bpic.net/free-photo/happy-man-catches-attention-his-friend_329181-18378.jpg" },
|
||||
{ id: "2", title: "El mejor bar", quote: "Los cócteles son de otro nivel.", name: "Carlos Gomez", role: "Habitual", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-black-woman-smile-camera_197531-33139.jpg" },
|
||||
{ id: "3", title: "Festejé mi cumple", quote: "La pasamos bárbaro. Todo salió organizado.", name: "Sofia Rossi", role: "Cumpleañera", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-posing-together_23-2148965391.jpg" },
|
||||
{ id: "4", title: "Top", quote: "La decoración y la música hacen que sea único.", name: "Javier Lopez", role: "Amante del restobar", imageSrc: "http://img.b2bpic.net/free-photo/portrait-bartender-cleaning-bar-counter_107420-65849.jpg" },
|
||||
{ id: "5", title: "Calidad", quote: "Muy buena carta, variedad para picar.", name: "Marta Diaz", role: "Clienta", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244688.jpg" },
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="Más de 450 personas confían en nuestras noches inolvidables."
|
||||
@@ -276,48 +142,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Campito Burguer",
|
||||
price: "$9,500",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-chanterelle-stuffed-round-zucchini-plate_53876-101537.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Ojo de Bife",
|
||||
price: "$15,200",
|
||||
variant: "Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tuna-salad-with-vegetables-plate_140725-5555.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Pasta Artesanal",
|
||||
price: "$8,900",
|
||||
variant: "Italiano",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-mushroom-side-view_140725-11332.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Ensalada Caesar",
|
||||
price: "$7,200",
|
||||
variant: "Fresh",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-salad-plate_23-2149598989.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Volcán de Chocolate",
|
||||
price: "$6,500",
|
||||
variant: "Postre",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dessert-souffle-with-strawberry-jelly-decorated-with-chocolate-icing-strawberries-with-cup-tea_141793-4308.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Signature Negroni",
|
||||
price: "$5,800",
|
||||
variant: "Drink",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-chocolade-delight-table_140725-9400.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Campito Burguer", price: "$9,500", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/homemade-chanterelle-stuffed-round-zucchini-plate_53876-101537.jpg" },
|
||||
{ id: "p2", name: "Ojo de Bife", price: "$15,200", variant: "Chef", imageSrc: "http://img.b2bpic.net/free-photo/tuna-salad-with-vegetables-plate_140725-5555.jpg" },
|
||||
{ id: "p3", name: "Pasta Artesanal", price: "$8,900", variant: "Italiano", imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-mushroom-side-view_140725-11332.jpg" },
|
||||
{ id: "p4", name: "Ensalada Caesar", price: "$7,200", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-salad-plate_23-2149598989.jpg" },
|
||||
{ id: "p5", name: "Volcán de Chocolate", price: "$6,500", variant: "Postre", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dessert-souffle-with-strawberry-jelly-decorated-with-chocolate-icing-strawberries-with-cup-tea_141793-4308.jpg" },
|
||||
{ id: "p6", name: "Signature Negroni", price: "$5,800", variant: "Drink", imageSrc: "http://img.b2bpic.net/free-photo/coffee-chocolade-delight-table_140725-9400.jpg" },
|
||||
]}
|
||||
title="Selección del Chef"
|
||||
description="Una muestra de lo mejor de nuestra carta, diseñada para disfrutar en buena compañía."
|
||||
@@ -331,21 +161,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10k+",
|
||||
description: "Clientes felices este año",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "50+",
|
||||
description: "Eventos realizados al mes",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "20",
|
||||
description: "Variedades de cócteles",
|
||||
},
|
||||
{ id: "m1", value: "10k+", description: "Clientes felices este año" },
|
||||
{ id: "m2", value: "50+", description: "Eventos realizados al mes" },
|
||||
{ id: "m3", value: "20", description: "Variedades de cócteles" },
|
||||
]}
|
||||
title="El Campito en Números"
|
||||
description="La elección número uno de quienes buscan calidad en Varela."
|
||||
@@ -355,9 +173,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Reservá tu mesa"
|
||||
description="Contactanos ahora y asegurá tu lugar en nuestra próxima noche especial."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/blurred-illuminated-retail-stores_23-2147781488.jpg"
|
||||
@@ -371,45 +187,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Menú",
|
||||
items: [
|
||||
{
|
||||
label: "Ver Carta",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Reservas",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Ubicación",
|
||||
items: [
|
||||
{
|
||||
label: "Florencio Varela, BA",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Horarios: 20hs - 04hs",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Menú", items: [{ label: "Ver Carta", href: "#menu" }, { label: "Reservas", href: "#contact" }] },
|
||||
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||
{ title: "Ubicación", items: [{ label: "Florencio Varela, BA", href: "#" }, { label: "Horarios: 20hs - 04hs", href: "#" }] },
|
||||
]}
|
||||
logoText="El Campito"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user