|
|
|
|
@@ -1,15 +1,22 @@
|
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
|
|
|
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
|
|
|
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
|
|
|
|
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" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="text-stagger"
|
|
|
|
|
@@ -26,99 +33,136 @@ export default function MenuPage() {
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarLayoutFloatingInline
|
|
|
|
|
brandName="Ewi Turi"
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "Home", id: "home" },
|
|
|
|
|
{ name: "Experience", id: "experience" },
|
|
|
|
|
{ name: "Menu", id: "menu" },
|
|
|
|
|
{ name: "Reservations", id: "reservations" },
|
|
|
|
|
]}
|
|
|
|
|
navItems={navItems}
|
|
|
|
|
button={{
|
|
|
|
|
text: "Reservar Mesa", href: "/reservations"}}
|
|
|
|
|
text: "Reservar Mesa", href: "/reservations"
|
|
|
|
|
}}
|
|
|
|
|
animateOnLoad={true}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="hero" data-section="hero">
|
|
|
|
|
<HeroCentered
|
|
|
|
|
title="MENÚ EXCLUSIVO\nRAMEN & SUSHI"
|
|
|
|
|
description="Descubre nuestra selección cuidadosamente elaborada de platos auténticos japoneses. Cada receta cuenta una historia de tradición y excelencia culinaria."
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
title="MENÚ DIGITAL"
|
|
|
|
|
description="Explora nuestras especialidades, bebidas auténticas y postres deliciosos. Cada plato cuenta una historia de sabor y tradición japonesa."
|
|
|
|
|
background={{
|
|
|
|
|
variant: "plain"
|
|
|
|
|
}}
|
|
|
|
|
avatars={[
|
|
|
|
|
{
|
|
|
|
|
src: "http://img.b2bpic.net/free-photo/different-type-noodles-with-eggs-seaweeds-salad-bowl-red-backdrop_23-2148123679.jpg", alt: "Ramen with steam"},
|
|
|
|
|
src: "http://img.b2bpic.net/free-photo/different-type-noodles-with-eggs-seaweeds-salad-bowl-red-backdrop_23-2148123679.jpg", alt: "Ramen with steam"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
src: "http://img.b2bpic.net/free-photo/salmon-sushi_1203-3574.jpg", alt: "Premium sushi platter"},
|
|
|
|
|
src: "http://img.b2bpic.net/free-photo/salmon-sushi_1203-3574.jpg", alt: "Premium sushi platter"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
src: "http://img.b2bpic.net/free-photo/dessert-table-japanese_23-2148123456.jpg", alt: "Delicious desserts"
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
avatarText="Ingredients Carefully Sourced"
|
|
|
|
|
avatarText="Descubre el mundo del sabor japonés"
|
|
|
|
|
buttons={[
|
|
|
|
|
{
|
|
|
|
|
text: "Ver Menú Completo", href: "#menu-categories"},
|
|
|
|
|
{
|
|
|
|
|
text: "Reservar Experiencia", href: "/reservations"},
|
|
|
|
|
text: "Reservar Experiencia", href: "/reservations"
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
buttonAnimation="slide-up"
|
|
|
|
|
ariaLabel="Menu hero section"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="menu-categories" data-section="menu-categories">
|
|
|
|
|
<div id="especialidades" data-section="especialidades">
|
|
|
|
|
<FeatureCardEight
|
|
|
|
|
title="Nuestras Categorías"
|
|
|
|
|
description="Explora cada sección de nuestro menú diseñado para satisfacer todos los gustos"
|
|
|
|
|
tag="Menú"
|
|
|
|
|
features={[
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
title: "Ramen Tonkotsu", description: "Caldo cremoso de hueso de cerdo preparado durante 18 horas con técnica tradicional. Fideos ondulados frescos, huevo marinado, tofu frito y brotes de bambú.", imageSrc: "http://img.b2bpic.net/free-photo/different-type-noodles-with-eggs-seaweeds-salad-bowl-red-backdrop_23-2148123679.jpg"},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
title: "Sushi Premium", description: "Selección de nigiri y rolls preparados con pescado fresco importado diariamente. Arroz de sushi perfectamente balanceado y ingredientes premium.", imageSrc: "http://img.b2bpic.net/free-photo/salmon-sushi_1203-3574.jpg"},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
title: "Especialidades", description: "Platos únicos de creación de nuestros chefs. Fusión de técnicas tradicionales con ingredientes locales para una experiencia incomparable.", imageSrc: "http://img.b2bpic.net/free-photo/hands-finishing-wrap_23-2148259236.jpg?_wi=2"},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
title: "Bebidas & Postres", description: "Cócteles inspirados en Japón, sake premium y postres tradicionales como mochi de hielo y mango lassi casero.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-oriental-restaurant_1122-1389.jpg?_wi=2"},
|
|
|
|
|
]}
|
|
|
|
|
title="Especialidades"
|
|
|
|
|
description="Nuestros platos más solicitados, preparados con técnicas tradicionales e ingredientes premium."
|
|
|
|
|
tag="Favorites"
|
|
|
|
|
tagAnimation="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
buttonAnimation="slide-up"
|
|
|
|
|
tagAnimation="opacity"
|
|
|
|
|
features={[
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
title: "Tonkotsu Ramen Signature", description: "Caldo de hueso de cerdo, fideos frescos, huevo marinado, brotes de bambú, cerdo asado, alga nori. $180", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-pszek4v9.png?_wi=1"},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
title: "Miso Ramen Clásico", description: "Caldo de miso rojo, fideos ondulados, germinados de soya, huevo, zanahoria, maíz, cerdo marinado. $160", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-d4peglr8.png?_wi=1"},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
title: "Shoyu Ramen Premium", description: "Caldo de soja oscuro, fideos rectos, cebolleta, hongos shiitake, huevo marinado, pechuga de pollo, brotes de bambú. $170", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-ccfo6w53.png?_wi=1"},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
title: "Sushi Premium Omakase", description: "Selección del chef: salmón, atún, pez limón, dorado, erizo, huevo de salmón, calamar, pulpo. $280", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-9pfv8zl1.png?_wi=1"},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="experience" data-section="experience">
|
|
|
|
|
<InlineImageSplitTextAbout
|
|
|
|
|
heading={[
|
|
|
|
|
<div id="bebidas" data-section="bebidas">
|
|
|
|
|
<FeatureCardEight
|
|
|
|
|
title="Bebidas"
|
|
|
|
|
description="Selección curada de bebidas tradicionales y cockteles creativos que complementan perfectamente tu experiencia culinaria."
|
|
|
|
|
tag="Beverages"
|
|
|
|
|
tagAnimation="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={true}
|
|
|
|
|
buttonAnimation="slide-up"
|
|
|
|
|
features={[
|
|
|
|
|
{
|
|
|
|
|
type: "text", content: "Cada plato es una "},
|
|
|
|
|
id: 1,
|
|
|
|
|
title: "Sake Nigori Premium", description: "Bebida tradicional japonesa sin filtrar, dulce y cremosa, 15% alcohol. $120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png?_wi=1"},
|
|
|
|
|
{
|
|
|
|
|
type: "image", src: "http://img.b2bpic.net/free-photo/elegant-oriental-restaurant_1122-1389.jpg", alt: "Japanese restaurant atmosphere"},
|
|
|
|
|
id: 2,
|
|
|
|
|
title: "Yuzu Cocktail", description: "Citrus japonés fresco, sake, vodka, jugo de limón, miel, soda. $85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png?_wi=2"},
|
|
|
|
|
{
|
|
|
|
|
type: "text", content: " obra maestra culinaria"},
|
|
|
|
|
id: 3,
|
|
|
|
|
title: "Té Matcha Helado", description: "Polvo de matcha premium, agua destilada, hielo, azúcar de caña, opcional: leche de almendra. $65", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png?_wi=3"},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
title: "Sake Frío Junmai", description: "Sake puro de arroz, aroma floral, sabor suave y limpio, 15% alcohol. $95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-p2ivrre0.png?_wi=4"},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="postres" data-section="postres">
|
|
|
|
|
<FeatureCardEight
|
|
|
|
|
title="Postres"
|
|
|
|
|
description="Dulces tentaciones que cierran tu experiencia con un toque de magia japonesa y sabores inolvidables."
|
|
|
|
|
tag="Desserts"
|
|
|
|
|
tagAnimation="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
buttons={[
|
|
|
|
|
buttonAnimation="slide-up"
|
|
|
|
|
features={[
|
|
|
|
|
{
|
|
|
|
|
text: "Conocer Más", href: "#gallery"},
|
|
|
|
|
id: 1,
|
|
|
|
|
title: "Mochi de Matcha", description: "Masa de arroz glutinoso, relleno de crema matcha, azúcar molida, harina de soya. $55", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-pszek4v9.png?_wi=2"},
|
|
|
|
|
{
|
|
|
|
|
text: "Contacto", href: "#contact"},
|
|
|
|
|
id: 2,
|
|
|
|
|
title: "Dorayaki de Fresa", description: "Panques azuki, mermelada de fresa fresca, crema batida, fresas frescas. $60", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-d4peglr8.png?_wi=2"},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
title: "Tres Leches Mochi", description: "Mochi de tres leches, leche condensada, crema fresca, frutas de temporada. $65", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-ccfo6w53.png?_wi=2"},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
title: "Tempura de Plátano", description: "Plátano rebozado crujiente, helado de vainilla, salsa de caramelo, maní molido. $50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqxhkTGaf3VbJBFnaCFdN8Xsd3/uploaded-1773339773498-9pfv8zl1.png?_wi=2"},
|
|
|
|
|
]}
|
|
|
|
|
buttonAnimation="blur-reveal"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactText
|
|
|
|
|
text="¿Listo para explorar nuestro menú? Reserva tu mesa ahora y vive una experiencia gastronómica que transportará tus sentidos a Japón."
|
|
|
|
|
text="¿Listo para degustar nuestras especialidades? Reserva tu mesa ahora y prepárate para una experiencia gastronómica única."
|
|
|
|
|
animationType="entrance-slide"
|
|
|
|
|
buttons={[
|
|
|
|
|
{
|
|
|
|
|
text: "Reservar Experiencia", href: "/reservations"},
|
|
|
|
|
text: "Reservar Experiencia", href: "/reservations"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "Ver Galería", href: "/gallery"},
|
|
|
|
|
text: "Volver al Inicio", href: "/"
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
background={{
|
|
|
|
|
variant: "plain"
|
|
|
|
|
}}
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
@@ -127,9 +171,11 @@ export default function MenuPage() {
|
|
|
|
|
<FooterLogoReveal
|
|
|
|
|
logoText="Ewi Turi"
|
|
|
|
|
leftLink={{
|
|
|
|
|
text: "Privacy Policy", href: "#"}}
|
|
|
|
|
text: "Privacy Policy", href: "#"
|
|
|
|
|
}}
|
|
|
|
|
rightLink={{
|
|
|
|
|
text: "Terms", href: "#"}}
|
|
|
|
|
text: "Terms", href: "#"
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
|