Switch to version 2: remove src/app/menu/page.tsx
This commit is contained in:
@@ -1,182 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { UtensilsCrossed, Wine } from 'lucide-react';
|
||||
|
||||
export default function MenuPage() {
|
||||
const foodCategories = [
|
||||
{
|
||||
id: "1", title: "Ensaladas", author: "Fresh & Healthy", description: "Ensaladas frescas con ingredientes de temporada, aderezos caseros y opciones vegetarianas.", tags: ["Saludable", "Vegetariano", "Fresco"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-salad-with-vegetables_23-2149404568.jpg", imageAlt: "Fresh salad"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Sopas & Cremas", author: "Reconfortante & Nutritivo", description: "Sopas caseras, consomés y cremas de temporada preparadas diariamente.", tags: ["Casero", "Caliente", "Tradicional"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bowl-soup-with-vegetables_23-2149404576.jpg", imageAlt: "Creamy soup"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Platos Principales", author: "Carnes & Pescados", description: "Selección de carnes a la parrilla, pescados frescos y platos de fusión Mediterranean.", tags: ["Proteína", "Gourmet", "Premium"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-fish-with-vegetables_23-2149404584.jpg", imageAlt: "Main course plate"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Pasta & Arroces", author: "Italiano & Mediterráneo", description: "Pastas artesanales, risottos cremosos y arroces de la casa preparados al momento.", tags: ["Italiano", "Paella", "Tradicional"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/paella-with-seafood_23-2149404592.jpg", imageAlt: "Pasta and rice dishes"
|
||||
},
|
||||
{
|
||||
id: "5", title: "Sándwiches & Bocatas", author: "Rápido & Delicioso", description: "Sándwiches premium con ingredientes selectos, perfecto para almuerzo rápido.", tags: ["Rápido", "Para Llevar", "Casual"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-vegetables_23-2149404600.jpg", imageAlt: "Sandwich selection"
|
||||
},
|
||||
{
|
||||
id: "6", title: "Postres", author: "Dulce & Artesanal", description: "Postres caseros, tartas recién hechas y delicias dulces preparadas por nuestro pastelero.", tags: ["Postres", "Casero", "Artesanal"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dessert-plate-with-chocolate_23-2149404608.jpg", imageAlt: "Dessert selection"
|
||||
}
|
||||
];
|
||||
|
||||
const drinkCategories = [
|
||||
{
|
||||
id: "7", title: "Bebidas Calientes", author: "Café & Té", description: "Café espresso de primera calidad, capuchinos, lattes y selección de tés premium.", tags: ["Café", "Té", "Gourmet"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-with-latte-art_23-2149404616.jpg", imageAlt: "Hot beverages"
|
||||
},
|
||||
{
|
||||
id: "8", title: "Bebidas Frías", author: "Refrescante & Natural", description: "Zumos naturales recién exprimidos, smoothies saludables y bebidas refrescantes.", tags: ["Zumo", "Natural", "Refrescante"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-juice-with-fruit_23-2149404624.jpg", imageAlt: "Cold beverages"
|
||||
},
|
||||
{
|
||||
id: "9", title: "Vinos & Bebidas Alcohólicas", author: "Selección Premium", description: "Selección de vinos españoles e internacionales, cócteles artesanales y bebidas premium.", tags: ["Vino", "Cócteles", "Premium"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wine-glass-with-red-wine_23-2149404632.jpg", imageAlt: "Wine selection"
|
||||
},
|
||||
{
|
||||
id: "10", title: "Batidos & Smoothies", author: "Saludable & Delicioso", description: "Batidos proteicos, smoothies tropicales y bebidas energéticas preparadas al momento.", tags: ["Saludable", "Proteína", "Fresco"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoothie-bowl-with-fruits_23-2149404640.jpg", imageAlt: "Smoothies and shakes"
|
||||
},
|
||||
{
|
||||
id: "11", title: "Agua & Refrescos", author: "Básico & Refrescante", description: "Agua mineral, refrescos naturales, agua con gas y bebidas light sin azúcar.", tags: ["Agua", "Natural", "Sin Azúcar"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/water-bottle-with-lemon_23-2149404648.jpg", imageAlt: "Water and soft drinks"
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Crescendo SL"
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Servicios", id: "#services" },
|
||||
{ name: "Beneficios", id: "#benefits" },
|
||||
{ name: "Contacto", id: "#contact" },
|
||||
{ name: "Preguntas", id: "#faq" },
|
||||
{ name: "Llamar", id: "tel:+34971123456" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="Nuestro Menú"
|
||||
description="Descubre nuestra amplia selección de platos y bebidas, preparados con ingredientes frescos y de calidad. Desde ensaladas saludables hasta postres artesanales, tenemos algo para todos los gustos."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
kpis={[
|
||||
{ value: "11", label: "Categorías" },
|
||||
{ value: "100+", label: "Platos" },
|
||||
{ value: "Diario", label: "Fresco" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
tag="Menú del Día"
|
||||
tagIcon={UtensilsCrossed}
|
||||
buttons={[
|
||||
{ text: "Hacer Pedido", href: "tel:+34971123456" },
|
||||
{ text: "Contactar", href: "#contact" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-kitchen-with-chefs-cooking_23-2149404656.jpg"
|
||||
imageAlt="Restaurant kitchen"
|
||||
mediaAnimation="blur-reveal"
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="food" data-section="food">
|
||||
<FeatureCardTwentyFour
|
||||
title="Nuestros Platos"
|
||||
description="Selección variada de comidas saludables y deliciosas para todos los paladares."
|
||||
features={foodCategories}
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Ver Menú Completo", href: "tel:+34971123456" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="drinks" data-section="drinks">
|
||||
<FeatureCardTwentyFour
|
||||
title="Nuestras Bebidas"
|
||||
description="Una selección completa de bebidas para refrescarte, desde café premium hasta vinos selectos."
|
||||
features={drinkCategories}
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="Bebidas Variadas"
|
||||
tagIcon={Wine}
|
||||
buttons={[
|
||||
{ text: "Hacer Pedido", href: "tel:+34971123456" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Navegación", items: [
|
||||
{ label: "Inicio", href: "/" },
|
||||
{ label: "Menú", href: "/menu" },
|
||||
{ label: "Contacto", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contacto", items: [
|
||||
{ label: "☎ +34 971 123 456", href: "tel:+34971123456" },
|
||||
{ label: "📧 info@crescendosl.es", href: "mailto:info@crescendosl.es" },
|
||||
{ label: "📍 C. de la Fàbrica 29", href: "https://maps.google.com/?q=C.+de+la+Fàbrica+29,+07013+Palma" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Política de Privacidad", href: "#" },
|
||||
{ label: "Términos de Servicio", href: "#" },
|
||||
{ label: "Cookies", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Síguenos", items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2025 Crescendo SL. Todos los derechos reservados."
|
||||
bottomRightText="Centro de Negocios en Palma"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user