diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 029062b..6e625cf 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,40 +1,97 @@ -// 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 AvatarGroup from "@/components/ui/AvatarGroup"; -import React from 'react'; -import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const avatarsSrc = [ + "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg", + "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914197.jpg", + "http://img.b2bpic.net/free-photo/man-engaged-household-task_23-2151741241.jpg", + "http://img.b2bpic.net/free-photo/sanitary-technician-gesturing-thumb-up_23-2147772204.jpg" +]; +const primaryButton = { + text: "Call 076 877 8848", + href: "tel:0768778848" +}; +const secondaryButton = { + text: "Get a Quote", + href: "#contact" +}; +const names = [ + "4.7 Stars", + "24 Google Reviews", + "24/7 Service" +]; -export default function HeroSection(): React.JSX.Element { +type HeroCenteredLogosProps = { + avatarsSrc: string[]; + avatarText: string; + title: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; + names: string[]; + hideMedia?: boolean; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const HeroInline = () => { return ( -