From 4ecdde0b1708e203fe9e03815fd23bc8ebfcc81d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 27 Jun 2026 19:15:07 +0000 Subject: [PATCH] Bob AI: Added "Call for Takeout" button to hero section --- src/pages/HomePage/sections/Hero.tsx | 115 ++++++++++++++++++++------- 1 file changed, 85 insertions(+), 30 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index c966f31..1925eb9 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,36 +1,91 @@ -// 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 ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + text: "See Menu", + href: "#products" +}; +const secondaryButton = { + text: "Reserve Table", + href: "#contact" +}; +const items = [ + { + imageSrc: "https://storage.googleapis.com/webild/users/user_3FJRV03nE3LwAAG5jRBAh31loHt/uploaded-1782583772817-n6egaer7.jpg" + }, + { + imageSrc: "https://storage.googleapis.com/webild/users/user_3FJRV03nE3LwAAG5jRBAh31loHt/uploaded-1782584263660-flxntje2.webp" + } +]; -export default function HeroSection(): React.JSX.Element { +type HeroSplitMediaGridProps = { + 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 }, + { imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never } + ]; +}; + +const HeroInline = () => { return ( -
- - - +
+ +
+
+
+
+

{"Southern Vermont's Premiere Taqueria"}

+
+ + + + + +
+
+
+
+ + + {items.map((item, index) => ( +
+ +
+ ))} +
+
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); } -- 2.49.1