diff --git a/src/pages/HomePage/sections/Menu.tsx b/src/pages/HomePage/sections/Menu.tsx index 9af3fdf..16437d1 100644 --- a/src/pages/HomePage/sections/Menu.tsx +++ b/src/pages/HomePage/sections/Menu.tsx @@ -1,37 +1,137 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "menu" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import { Info } from "lucide-react"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import Button from "@/components/ui/Button"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const items = [ + { + title: "Omakase Selection", + description: "Chef's premium selection of seasonal nigiri and sashimi. €85", + imageSrc: "http://img.b2bpic.net/free-photo/tasty-sushi-rolls-table_23-2148505531.jpg" + }, + { + title: "Dragon Roll", + description: "Eel, cucumber, topped with avocado and unagi sauce. €18", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-sushi-meal-fish-rolls-with-fish-rice-along-with-sauce-grey-wall_140725-46909.jpg" + }, + { + title: "Salmon Nigiri Set", + description: "Fresh Atlantic salmon over seasoned sushi rice. €22", + imageSrc: "https://picsum.photos/seed/391916356/1200/800" + }, + { + title: "Shrimp Tempura", + description: "Lightly battered and fried shrimp with dipping sauce. €14", + imageSrc: "https://picsum.photos/seed/625526388/1200/800" + }, + { + title: "Spicy Tuna Crunch", + description: "Spicy tuna, tempura flakes, topped with spicy mayo. €16", + imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-beef-parts-black-pan_114579-81662.jpg" + }, + { + title: "Wok Fried Udon", + description: "Thick udon noodles stir-fried with vegetables and savory sauce. €19", + imageSrc: "https://picsum.photos/seed/246292624/1200/800" + } +]; -export default function MenuSection(): React.JSX.Element { +type FeatureItem = { + title: string; + description: string; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +interface FeaturesRevealCardsProps { + tag: string; + title: string; + description: string; + primaryButton?: { text: string; href: string }; + secondaryButton?: { text: string; href: string }; + items: FeatureItem[]; +} + +const MenuInline = () => { return ( -