From faf03909d68a2d18fe75387d0569c2e1d8849747 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 18:23:50 +0000 Subject: [PATCH 1/2] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 192 +++++++++++++++++++++++++++--------------- 1 file changed, 125 insertions(+), 67 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 06e47ba..9e8e311 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -1,15 +1,67 @@ "use client"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroCentered from "@/components/sections/hero/HeroCentered"; -import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import Link from "next/link"; +import Link from 'next/link'; export default function MenuPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Experience", id: "/experience" }, + { name: "Menu", id: "/menu" }, + { name: "Reservations", id: "/reservations" }, + { name: "Location", id: "/location" }, + ]; + + const especialidades = [ + { + id: "esp-1", name: "Tonkotsu Ramen Signature", price: "$180", variant: "Caldo de hueso de cerdo, fideos frescos, huevo marinado, brotes de bambú, cerdo asado, alga nori", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-pszek4v9.png", imageAlt: "Tonkotsu Ramen Signature", isFavorited: false, + }, + { + id: "esp-2", name: "Miso Ramen Clásico", price: "$160", variant: "Caldo de miso rojo, fideos ondulados, germinados de soya, huevo, zanahoria, maíz, cerdo marinado", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-d4peglr8.png", imageAlt: "Miso Ramen Clásico", isFavorited: false, + }, + { + id: "esp-3", name: "Shoyu Ramen Premium", price: "$170", variant: "Caldo de soja oscuro, fideos rectos, cebolleta, hongos shiitake, huevo marinado, pechuga de pollo, brotes de bambú", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-ccfo6w53.png", imageAlt: "Shoyu Ramen Premium", isFavorited: false, + }, + { + id: "esp-4", name: "Sushi Premium Omakase", price: "$280", variant: "Selección del chef: salmón, atún, pez limón, dorado, erizo, huevo de salmón, calamar, pulpo", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-9pfv8zl1.png", imageAlt: "Sushi Premium Omakase", isFavorited: false, + }, + ]; + + const bebidas = [ + { + id: "beb-1", name: "Sake Nigori Premium", price: "$120", variant: "Bebida tradicional japonesa sin filtrar, dulce y cremosa, 15% alcohol", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png", imageAlt: "Sake Nigori Premium", isFavorited: false, + }, + { + id: "beb-2", name: "Yuzu Cocktail", price: "$85", variant: "Citrus japonés fresco, sake, vodka, jugo de limón, miel, soda", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png", imageAlt: "Yuzu Cocktail", isFavorited: false, + }, + { + id: "beb-3", name: "Té Matcha Helado", price: "$65", variant: "Polvo de matcha premium, agua destilada, hielo, azúcar de caña, opcional: leche de almendra", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png", imageAlt: "Té Matcha Helado", isFavorited: false, + }, + { + id: "beb-4", name: "Sake Frío Junmai", price: "$95", variant: "Sake puro de arroz, aroma floral, sabor suave y limpio, 15% alcohol", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png", imageAlt: "Sake Frío Junmai", isFavorited: false, + }, + ]; + + const postres = [ + { + id: "pos-1", name: "Mochi de Matcha", price: "$55", variant: "Masa de arroz glutinoso, relleno de crema matcha, azúcar molida, harina de soya", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-pszek4v9.png", imageAlt: "Mochi de Matcha", isFavorited: false, + }, + { + id: "pos-2", name: "Dorayaki de Fresa", price: "$60", variant: "Panques azuki, mermelada de fresa fresca, crema batida, fresas frescas", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-d4peglr8.png", imageAlt: "Dorayaki de Fresa", isFavorited: false, + }, + { + id: "pos-3", name: "Tres Leches Mochi", price: "$65", variant: "Mochi de tres leches, leche condensada, crema fresca, frutas de temporada", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-ccfo6w53.png", imageAlt: "Tres Leches Mochi", isFavorited: false, + }, + { + id: "pos-4", name: "Tempura de Plátano", price: "$50", variant: "Plátano rebozado crujiente, helado de vainilla, salsa de caramelo, maní molido", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-9pfv8zl1.png", imageAlt: "Tempura de Plátano", isFavorited: false, + }, + ]; + return (
- -
- + +
+ +
+
@@ -127,9 +183,11 @@ export default function MenuPage() {
From 5ef500385fddc3cb250039bdf59d58c1af0deac6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 18:23:51 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8ac884b..26b98ee 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -193,4 +193,4 @@ export default function HomePage() { ); -} \ No newline at end of file +}