diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index dd14bc3..48d4cf2 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,48 +1,105 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; -import React from 'react'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + text: "View Menu", + href: "#menu" +}; +const secondaryButton = { + text: "Learn About Us", + href: "#about" +}; +const items = [ + { + imageSrc: "https://picsum.photos/seed/1740938389/1200/800" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/gardening-decoration-with-slate_23-2147687364.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-brazilian-food-composition-with-copy-space_23-2148739222.jpg" + }, + { + imageSrc: "https://picsum.photos/seed/899514802/1200/800" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/mexican-food_23-2148024813.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-with-burger-outdoors_23-2148289440.jpg" + } +]; + +type HeroBillboardCarouselProps = { + tag: string; + title: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; + items: ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never })[]; +}; + +const HeroInline = () => { + const duplicated = [...items, ...items, ...items, ...items]; -export default function HeroSection(): React.JSX.Element { return ( -
- - + +
+
+

{"Real Mexican Tacos"}

+
+ + - + + + +
+
+ +
+
+ {duplicated.map((item, i) => ( +
+ +
+ ))} +
+
+ + ); +}; + +export default function HeroSection() { + return ( +
+ +
); }