From 320fefb27db517becefca0c6fec094ee05b41772 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:00:39 +0000 Subject: [PATCH] Switch to version 3: added src/app/menu/page.tsx --- src/app/menu/page.tsx | 182 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 182 insertions(+) create mode 100644 src/app/menu/page.tsx diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..c005149 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,182 @@ +"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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}