diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 0e68c2e..15134c8 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,32 +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: "See Menu", + href: "#menu" +}; +const secondaryButton = { + text: "Visit Us", + href: "#contact" +}; +const items = [ + { + imageSrc: "http://img.b2bpic.net/free-photo/side-view-multi-colored-meatballs-with-tomato-sauces-green-onions_140725-13961.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/georgian-khinkali-with-hot-chili-sauce_114579-2368.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-patties-baked-pastries-grey-desk-patty-dough-pastry-bake-meal_140725-86249.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-broccoli-table_140725-9657.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-pav-bhaji-dish-with-bread-onions_23-2151996246.jpg" + }, + { + imageSrc: "http://img.b2bpic.net/free-photo/thai-noodles-style_74190-3896.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 ( -
- - + +
+
+

{"Kolhapur's Soul in Every Bite"}

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